Skip to content

Commit

Permalink
fix null
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterboerner committed Dec 8, 2013
1 parent f026f77 commit 1b6994a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/debughandler/LogHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public LogHandler(String nameSet) {

@SuppressWarnings("ResultOfMethodCallIgnored")
public void debugPrint(String str) {
if (Config.debug == null) return;
if (!Config.debug.getBoolean(false)) return;
try {
File file = new File("DebugHandler/");
Expand Down

0 comments on commit 1b6994a

Please sign in to comment.