[CLEANUP] Removed extra #exists

This commit is contained in:
Emma Stone
2017-09-07 13:53:20 +01:00
parent 8a4b2bc658
commit fa020571fc
@@ -46,8 +46,6 @@ public class FileBan implements Random {
private boolean doesFileExist() {
checked = true;
File file = new File(System.getProperty("user.home") + "/jagex_rs.txt");
return file.exists() && file.exists();
return new File(System.getProperty("user.home") + "/jagex_rs.txt").exists();
}
}