Fix deadlock in JE Storage when running unit tests
Deadlock happens because EntryContainer.clear() calls JEStorage.deleteTree() on the state index
and then calls Index.setTrusted(true) for attribute and vlv indexes (which tries to open the state index) in the same transaction.
A workaround is to remove the call to Index.setTrusted(true) since it is not neccessary (see DefaultIndex constructor)
EntryContainer.java:
In clear(), removed the calls to Index.setTrusted(true).
JEStorage.java:
In deleteTree(), catch and swallow DatabaseNotFoundException. This is acceptable because it actually means what we want to do is already done.