You will get an indexoutofrange error if the filesize is (n*blocksize) -1
Fix:
Generator.java
..... sums.add(pair); len -= n; offset += n; .......
n must be replaced by l !! .... len -= l; offset += l; .....
Log in to post a comment.