small fixes, but binary search still not working

This commit is contained in:
Honfika
2014-01-21 22:52:15 +01:00
parent fc92a2e5b5
commit 7b518a6e0d
5 changed files with 18 additions and 15 deletions
@@ -83,7 +83,8 @@ public class StreamSearch implements Searchable {
}
}
if (match) {
ret.put(pos+i, new FoundInputStream(pos+i,is));
InputStream fis = new FoundInputStream(pos + i, is);
ret.put(pos + i, fis);
continue loopdata;
}
}