mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-20 09:17:29 +07:00
Code formatting adjustment
This commit is contained in:
parent
d9232b3593
commit
834d44ca3b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user