diff --git a/03/src/de/dis2013/authentication/PropertiesFileAuthenticator.java b/03/src/de/dis2013/authentication/PropertiesFileAuthenticator.java index 5a3e125..6a78132 100644 --- a/03/src/de/dis2013/authentication/PropertiesFileAuthenticator.java +++ b/03/src/de/dis2013/authentication/PropertiesFileAuthenticator.java @@ -33,11 +33,7 @@ public class PropertiesFileAuthenticator implements Authenticator { this.username = properties.getProperty("username"); this.password = properties.getProperty("password"); - } catch (FileNotFoundException e1) { - e1.printStackTrace(); - } catch (IOException e) { - e.printStackTrace(); - } catch (URISyntaxException e) { + } catch (IOException | URISyntaxException e) { e.printStackTrace(); } }