Revert "dictionary and deltadictionary - one cleanup and one fix where i forgot to keep a null check"

This reverts commit e6a2197781.
This commit is contained in:
DarthArgus
2016-04-02 06:56:50 +00:00
parent c2d2d5cdca
commit 2c2d8a4ed6
2 changed files with 94 additions and 9 deletions
@@ -69,13 +69,6 @@ public final class deltadictionary
return null;
}
if (v.get(0) == null)
{
System.err.println("WARNING: deltadictionary.put passed vector with null data");
Thread.dumpStack();
return null;
}
value = v.toArray();
}
return currentValue.put(key, value);