-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bugfix + import 3D fixed for gabbro #21
base: main
Are you sure you want to change the base?
Conversation
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) | ||
*/ | ||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { | ||
if (!SessionUtility.tryConnectServlet(request, response)) { |
Check notice
Code scanning / SonarCloud
Exceptions should not be thrown from servlet methods Low
objectJSONTree = "null"; | ||
} | ||
|
||
PrintWriter out = response.getWriter(); |
Check notice
Code scanning / SonarCloud
Exceptions should not be thrown from servlet methods Low
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) | ||
*/ | ||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { | ||
doGet(request, response); |
Check notice
Code scanning / SonarCloud
Exceptions should not be thrown from servlet methods Low
@@ -146,20 +155,22 @@ | |||
if (value.compareToIgnoreCase("disconnect") == 0) { | |||
askConnection = false; | |||
} | |||
}else if ("etp-server-headers".compareToIgnoreCase(k) == 0) { | |||
Gson gson = new Gson(); | |||
headers.putAll(gson.fromJson(value, HashMap.class)); |
Check notice
Code scanning / SonarCloud
Exceptions should not be thrown from servlet methods Low
@@ -81,7 +81,7 @@ | |||
return; | |||
} | |||
|
|||
PrintWriter out = response.getWriter(); | |||
PrintWriter out = response.getWriter(); |
Check notice
Code scanning / SonarCloud
Exceptions should not be thrown from servlet methods Low
|
No description provided.