For those that felt like clearing their config file.

This commit is contained in:
Olof Larsson 2013-09-09 19:57:04 +02:00
parent 0c8f1c9cf1
commit 5782eb9193

View File

@ -52,6 +52,7 @@ public class SimpleConfig
protected static boolean contentRequestsDefaults(String content) protected static boolean contentRequestsDefaults(String content)
{ {
if (content == null) return false; if (content == null) return false;
if (content.length() == 0) return false;
char c = content.charAt(0); char c = content.charAt(0);
return c == 'd' || c == 'D'; return c == 'd' || c == 'D';
} }