boonproject / boon

Simple opinionated Java for the novice to expert level Java Programmer. Low Ceremony. High Productivity.
http://richardhightower.github.io/site/Boon/Welcome.html
Apache License 2.0
520 stars 102 forks source link

In ObjectFilter.endsWith uses StartsWith instead of EndsWith #336

Closed mouette closed 9 years ago

mouette commented 9 years ago

I think there is an issue withe the criterion endsWith.

At line 335 of ObjectFilter return fieldValue.toString().startsWith(value.toString()); instead of return fieldValue.toString().endsWith(value.toString());

Thanks

RichardHightower commented 9 years ago

thanks

RichardHightower commented 9 years ago

I will fix it.