mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Merge pull request #185 from chamonkey/issue3714
Add number format handling to Storage.java
This commit is contained in:
commit
5a487f154c
@ -321,7 +321,11 @@ public class Storage implements SharedPreferences {
|
|||||||
if (val == null) {
|
if (val == null) {
|
||||||
return defValue;
|
return defValue;
|
||||||
}
|
}
|
||||||
return Float.parseFloat(val);
|
try{
|
||||||
|
return Float.parseFloat(val);
|
||||||
|
} catch (NumberFormatException nfe){
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//@Override
|
//@Override
|
||||||
@ -330,7 +334,11 @@ public class Storage implements SharedPreferences {
|
|||||||
if (val == null) {
|
if (val == null) {
|
||||||
return defValue;
|
return defValue;
|
||||||
}
|
}
|
||||||
return Integer.parseInt(val);
|
try {
|
||||||
|
return Integer.parseInt(val);
|
||||||
|
} catch (NumberFormatException nfe){
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//@Override
|
//@Override
|
||||||
@ -339,7 +347,11 @@ public class Storage implements SharedPreferences {
|
|||||||
if (val == null) {
|
if (val == null) {
|
||||||
return defValue;
|
return defValue;
|
||||||
}
|
}
|
||||||
return Long.parseLong(val);
|
try{
|
||||||
|
return Long.parseLong(val);
|
||||||
|
} catch (NumberFormatException nfe){
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//@Override
|
//@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user