mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Whitespace-only code formatting changes.
This commit is contained in:
@@ -17,9 +17,9 @@ abstract class StringMap extends Hashtable<String, String> {
|
||||
|
||||
public boolean getBoolean(String key, boolean defaultValue) {
|
||||
String s = get(key);
|
||||
if(s == null) return defaultValue;
|
||||
if("true".equals(s)) return true;
|
||||
if("false".equals(s)) return false;
|
||||
if (s == null) return defaultValue;
|
||||
if ("true".equals(s)) return true;
|
||||
if ("false".equals(s)) return false;
|
||||
return defaultValue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user