Collapsed catch block

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2017-05-03 10:40:40 +02:00
parent 2d62cb6453
commit 36a9e84fbe
1 changed files with 1 additions and 5 deletions

View File

@ -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();
}
}