Rename ignored exception

This commit is contained in:
wine 2018-08-10 15:39:45 +02:00
parent 21bbc79899
commit d53aaa15d5
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class Friends extends SettingsClass {
String username = split[0];
UUID uuid = UUID.fromString(split[1]);
friends.add(new Friend(getUsernameByUUID(uuid, username),uuid));
} catch (Exception e) {} // Empty line, wrong formatting or something, we don't care
} catch (Exception ignored) {} // Empty line, wrong formatting or something, we don't care
}
return friends;
}