GUACAMOLE-197: Remove unnecessary return statements.

This commit is contained in:
Nick Couchman
2017-04-11 09:27:57 -04:00
committed by Nick Couchman
parent 12ae122314
commit 3976af7b11

View File

@@ -88,17 +88,14 @@ public class RadiusConnectionService {
catch (GuacamoleException e) { catch (GuacamoleException e) {
logger.error("Unable to initialize RADIUS client: {}", e.getMessage()); logger.error("Unable to initialize RADIUS client: {}", e.getMessage());
logger.debug("Failed to init RADIUS client.", e); logger.debug("Failed to init RADIUS client.", e);
return;
} }
catch (UnknownHostException e) { catch (UnknownHostException e) {
logger.error("Unable to resolve host: {}", e.getMessage()); logger.error("Unable to resolve host: {}", e.getMessage());
logger.debug("Failed to resolve host.", e); logger.debug("Failed to resolve host.", e);
return;
} }
catch (IOException e) { catch (IOException e) {
logger.error("Unable to communicate with host: {}", e.getMessage()); logger.error("Unable to communicate with host: {}", e.getMessage());
logger.debug("Failed to communicate with host.", e); logger.debug("Failed to communicate with host.", e);
return;
} }
} }