use of net.sourceforge.processdash.util.HashTree in project processdash by dtuma.
the class ImportedDefectManager method getContext.
private static HashTree getContext(HashTree base, String path) {
String fakeItem = path + "foo";
base.put(fakeItem, "bar");
HashTree result = (HashTree) base.get(path);
base.remove(fakeItem);
return result;
}
Aggregations