GUACAMOLE-197: Remove unnecessary return statements.
Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/3976af7b Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/3976af7b Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/3976af7b Branch: refs/heads/master Commit: 3976af7b11fa81e04fb7bade11a73814ef54e87f Parents: 12ae122 Author: Nick Couchman <nick.couch...@yahoo.com> Authored: Tue Apr 11 09:27:57 2017 -0400 Committer: Nick Couchman <vn...@apache.org> Committed: Mon Jan 29 17:08:10 2018 -0500 ---------------------------------------------------------------------- .../org/apache/guacamole/auth/radius/RadiusConnectionService.java | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/3976af7b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusConnectionService.java ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusConnectionService.java b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusConnectionService.java index a2f984b..e36b8bd 100644 --- a/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusConnectionService.java +++ b/extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/RadiusConnectionService.java @@ -88,17 +88,14 @@ public class RadiusConnectionService { catch (GuacamoleException e) { logger.error("Unable to initialize RADIUS client: {}", e.getMessage()); logger.debug("Failed to init RADIUS client.", e); - return; } catch (UnknownHostException e) { logger.error("Unable to resolve host: {}", e.getMessage()); logger.debug("Failed to resolve host.", e); - return; } catch (IOException e) { logger.error("Unable to communicate with host: {}", e.getMessage()); logger.debug("Failed to communicate with host.", e); - return; } }