Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dump/src/util/dump/Dump.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
import gnu.trove.list.array.TByteArrayList;
import gnu.trove.set.hash.TLongHashSet;
import util.dump.ExternalizableBean.externalizationVersion;
import util.dump.UniqueIndex.DuplicateKeyException;
import util.dump.UniqueConstraint.DuplicateKeyException;
import util.dump.cache.SoftLRUCache;
import util.dump.io.IOUtils;
import util.dump.sort.InfiniteSorter;
Expand Down
4 changes: 2 additions & 2 deletions dump/src/util/dump/ExternalizableBean.java
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ default void readExternal( ObjectInput in ) throws IOException, ClassNotFoundExc
if ( f != null ) {
f.set(this, o);
}
// throw new IllegalArgumentException("The field type " + fieldTypes[i] + " in class " + getClass()
// throw new IllegalArgumentException("The field type " + fieldTypes[i] + " in " + getClass()
// + " is unsupported by util.dump.ExternalizableBean.");
}
}
Expand All @@ -802,7 +802,7 @@ default void readExternal( ObjectInput in ) throws IOException, ClassNotFoundExc
throw e;
}
catch ( Throwable e ) {
throw new RuntimeException("Failed to read externalized instance. Maybe the field order was changed? class " + getClass(), e);
throw new RuntimeException("Failed to read externalized instance. Maybe the field order was changed? " + getClass(), e);
}
}

Expand Down
2 changes: 1 addition & 1 deletion dump/src/util/dump/GroupedIndex.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.util.Iterator;
import java.util.NoSuchElementException;

import util.dump.UniqueIndex.DuplicateKeyException;
import util.dump.UniqueConstraint.DuplicateKeyException;
import util.dump.reflection.FieldAccessor;


Expand Down
Loading
Loading