libbreakgen library seems to work on Mac so error logging is removed

This commit is contained in:
nik
2011-04-01 11:00:36 +04:00
parent 2d6ad65b5b
commit 57cc5cdf9c
@@ -59,17 +59,15 @@ public class AppMain {
} else {
libPath = binPath + "libbreakgen.jnilib";
}
}
try {
if (libPath != null) {
System.load(libPath);
}
}
catch (UnsatisfiedLinkError e) {
if (new File(libPath).exists() && osName.startsWith("mac")) {
e.printStackTrace();
}
//Do nothing, unknown os or some other error => no ctrl-break is available
}
}