mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-504: Avoid unnecessary use of instanceof.
This commit is contained in:
@@ -259,19 +259,17 @@ public abstract class GuacamoleHTTPTunnelServlet extends HttpServlet {
|
||||
|
||||
// Catch any thrown guacamole exception and attempt to pass within the
|
||||
// HTTP response, logging each error appropriately.
|
||||
catch (GuacamoleException e) {
|
||||
if (e instanceof GuacamoleClientException) {
|
||||
catch (GuacamoleClientException e) {
|
||||
logger.warn("HTTP tunnel request rejected: {}", e.getMessage());
|
||||
sendError(response, e.getStatus().getGuacamoleStatusCode(),
|
||||
e.getStatus().getHttpStatusCode(), e.getMessage());
|
||||
}
|
||||
else {
|
||||
catch (GuacamoleException e) {
|
||||
logger.error("HTTP tunnel request failed: {}", e.getMessage());
|
||||
logger.debug("Internal error in HTTP tunnel.", e);
|
||||
sendError(response, e.getStatus().getGuacamoleStatusCode(),
|
||||
e.getStatus().getHttpStatusCode(), "Internal server error.");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user