mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-197: Remove unnecessary return statements.
This commit is contained in:
committed by
Nick Couchman
parent
12ae122314
commit
3976af7b11
@@ -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;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user