sanders: KeyHandler: Never return null, prevent crash

This commit is contained in:
jhenrique09
2017-11-14 19:26:42 -02:00
committed by therootlord
parent 71b7653c8e
commit 5c57ce7af5

View File

@@ -40,7 +40,7 @@ public final class FileUtils {
* @return the read line contents, or null on failure
*/
public static String readOneLine(String fileName) {
String line = null;
String line = "0";
BufferedReader reader = null;
try {