Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In comparison step of dictionaryBinarySearch(), we are going back to …
…doing string comparison (rather than byte-level comparison). This is necessary because the binary search table's layout is being done according to Java's (Unicode-aware) string comparison order, not encoded byte comparison order, so the lookup needs to match. This fixes issue LHNCBC#1; see issue for more complete discussion.
- Loading branch information