Code formatting adjustment

This commit is contained in:
Collin Smith 2020-08-27 01:18:24 -07:00
parent d9232b3593
commit 834d44ca3b

View File

@ -139,11 +139,9 @@ public class StringMap {
}
public StringMap freeze() {
if (immutableCopy == null) {
return immutableCopy = new StringMap(this);
} else {
return immutableCopy;
}
return immutableCopy == null
? immutableCopy = new StringMap(this)
: immutableCopy;
}
@Override