1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-15 22:15:15 -05:00

Log NumberFormatExceptions. Fix whitespace.

This commit is contained in:
Andrew Chen 2012-09-29 07:53:34 -07:00
parent 5a487f154c
commit 3861e7ca35

View File

@ -324,6 +324,7 @@ public class Storage implements SharedPreferences {
try { try {
return Float.parseFloat(val); return Float.parseFloat(val);
} catch (NumberFormatException nfe) { } catch (NumberFormatException nfe) {
Log.e(K9.LOG_TAG, "Could not parse float", nfe);
return defValue; return defValue;
} }
} }
@ -337,6 +338,7 @@ public class Storage implements SharedPreferences {
try { try {
return Integer.parseInt(val); return Integer.parseInt(val);
} catch (NumberFormatException nfe) { } catch (NumberFormatException nfe) {
Log.e(K9.LOG_TAG, "Could not parse int", nfe);
return defValue; return defValue;
} }
} }
@ -350,6 +352,7 @@ public class Storage implements SharedPreferences {
try { try {
return Long.parseLong(val); return Long.parseLong(val);
} catch (NumberFormatException nfe) { } catch (NumberFormatException nfe) {
Log.e(K9.LOG_TAG, "Could not parse long", nfe);
return defValue; return defValue;
} }
} }