Skip to content

Commit

Permalink
Remove stack trace printing for trove support
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Nov 14, 2013
1 parent 7d0476d commit 02d9b55
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/main/java/net/citizensnpcs/npc/CitizensNPCRegistry.java
Expand Up @@ -171,12 +171,7 @@ public void remove(int id) {
try {
Class.forName("gnu.trove.map.hash.TIntObjectHashMap").newInstance();
TROVE_EXISTS = true;
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (Exception e) {
}
}
}

0 comments on commit 02d9b55

Please sign in to comment.