Heartstopper Commit

Enabled every catch block in the project to log parsed exceptions.
This commit is contained in:
ronancpl
2017-04-02 21:38:07 -03:00
parent 3990a08202
commit 5f01d3b7fd
88 changed files with 13325 additions and 40964 deletions

View File

@@ -216,7 +216,7 @@ public class AbstractPlayerInteraction {
try {
return getQuestStatus(quest) == MapleQuestStatus.Status.COMPLETED;
} catch (NullPointerException e) {
e.printStackTrace();
e.printStackTrace();
return false;
}
}
@@ -229,7 +229,7 @@ public class AbstractPlayerInteraction {
try {
return getQuestStatus(quest) == MapleQuestStatus.Status.STARTED;
} catch (NullPointerException e) {
e.printStackTrace();
e.printStackTrace();
return false;
}
}
@@ -461,7 +461,7 @@ public class AbstractPlayerInteraction {
try {
return Server.getInstance().getGuild(getPlayer().getGuildId(), getPlayer().getWorld(), null);
} catch (Exception e) {
e.printStackTrace();
e.printStackTrace();
}
return null;
}