Bugs in used filter syntax -------------------------- Key: FELIX-327 URL: https://issues.apache.org/jira/browse/FELIX-327 Project: Felix Issue Type: Bug Components: Bundle Repository (OBR) Affects Versions: 1.0.0 Reporter: Bart Elen Fix For: 1.0.0
LocalRepositoryImpl.java contains two similar bugs in the used filter syntax Line 256 currently is: : "(!(version<=" + imports[impIdx].getVersion() + ")"; While it should be: : "(!(version<=" + imports[impIdx].getVersion() + "))"; Line 262 currently is: : "(!(version>=" + imports[impIdx].getVersionHigh() + ")"; While it should be: : "(!(version>=" + imports[impIdx].getVersionHigh() + "))"; Greetings, Bart -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.