Skip to content

Commit

Permalink
lets try skiplists
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRockin committed Aug 28, 2019
1 parent e2eead1 commit 5861615
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/mortar/util/reflection/Violator.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.TreeMap;
import java.util.concurrent.ConcurrentSkipListMap;

import mortar.lang.collection.GList;

public class Violator
{
protected static TreeMap<String, Object> nodes = new TreeMap<String, Object>();
protected static ConcurrentSkipListMap<String, Object> nodes = new ConcurrentSkipListMap<String, Object>();

private static String id(Object o, Object h)
{
Expand Down

0 comments on commit 5861615

Please sign in to comment.