remove unecessary assert: the write method below has a real 'if' checking this, and custom readers and writers may not have this limit

This commit is contained in:
Mike McCandless 2017-07-13 05:20:38 -04:00
parent 22ec456b0c
commit 1661a37a46
1 changed files with 0 additions and 1 deletions

View File

@ -608,7 +608,6 @@ public class OfflineSorter {
int count = 0;
while ((spare = iter.next()) != null) {
assert spare.length <= Short.MAX_VALUE;
out.write(spare);
count++;
}