(String key, int defaultValue)
| 21 | } |
| 22 | |
| 23 | public static int getInt(String key, int defaultValue) { |
| 24 | return getPrefers().getInt(key, defaultValue); |
| 25 | } |
| 26 | |
| 27 | public static int getInt(String key) { |
| 28 | return getInt(key, 0); |
nothing calls this directly
no test coverage detected