Skip to content

Commit 89d1e84

Browse files
committed
made a set modifiable for which there was no reason to be unmodifiable
in the first place.
1 parent 52d29a8 commit 89d1e84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/soot/util/HashMultiMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public boolean removeAll( K key, Set<V> values ) {
131131
public Set<V> get( K o ) {
132132
Set<V> ret = m.get( o );
133133
if( ret == null ) return Collections.emptySet();
134-
return Collections.unmodifiableSet(ret);
134+
else return ret;
135135
}
136136

137137
@Override

0 commit comments

Comments
 (0)