xdrop / fuzzywuzzy

Java fuzzy string matching implementation of the well known Python's fuzzywuzzy algorithm. Fuzzy search for Java
GNU General Public License v2.0
822 stars 118 forks source link

Fix PartialRatio issue #80

Closed burdoto closed 4 years ago

burdoto commented 4 years ago

Fixes #39

This Pull Requests uses @BobLd's fix suggestion to fix issue #39. An additional Test case for Issues and Bugs has been created. This case finishes successfully with this change.

xdrop commented 4 years ago

Thanks! Will release this soon.

burdoto commented 4 years ago

Hey @xdrop, another thing: You still have the .travis.yml file in master branch, but Travis doesn't seem to be set up for this repositories master branch.

xdrop commented 4 years ago

Hey @xdrop, another thing: You still have the .travis.yml file in master branch, but Travis doesn't seem to be set up for this repositories master branch.

Looks like they dropped support for openjdk7

"Expected feature release number in range of 9 to 15, but got: 7"

Will need to probably switch to a higher version one, thanks

burdoto commented 4 years ago

I remember this, it's just a matter of changing openjdk7 to openjdk9 or oraclejdk7 (or 8), if you define Java version 7 in your POM files.

Regarding #75; I've made a Trie implementation @ org.comroid:trie and I'm currently investigating whether its possible to use a Trie structure to support extreme String sizes. I'm using the 'develop' branch from before for this.