1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-19 09:42:11 +03:00

New preference: enable all compiler warnings, off by default. Fixes #1728 and #2415. Also affects #2634 and #2207

This commit is contained in:
Federico Fissore
2015-04-10 15:27:25 +02:00
parent 37e2a1994a
commit 61592d78fa
3 changed files with 27 additions and 3 deletions

View File

@ -311,7 +311,7 @@ public class PreferencesMap extends LinkedHashMap<String, String> {
* insensitive compared), <b>false</b> in any other case
*/
public boolean getBoolean(String key) {
return new Boolean(get(key));
return Boolean.valueOf(get(key));
}
/**