Skip to content

Commit

Permalink
fix: MutableMap.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Chaturvedi committed Nov 14, 2024
1 parent 0b9ca63 commit 9ed496a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/MutableMap/MutableMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public class MutableMap<K, V> implements DafnyLibraries.MutableMapTrait<K, V> {
private ConcurrentHashMap<K,V> m;

public MutableMap(dafny.TypeDescriptor<K> _td_K, dafny.TypeDescriptor<V> _td_V) {
super(_td_K, _td_V);
m = new ConcurrentHashMap<K,V>();
}

Expand Down

0 comments on commit 9ed496a

Please sign in to comment.