changed access modifier so tests will pass

Former-commit-id: 95ccefd362c0dbea2dbc33f7aeea2d515f5e8b6c
This commit is contained in:
Jeremy Long
2015-02-28 07:13:52 -05:00
parent 638b3c0695
commit 9833ff20d1

View File

@@ -785,7 +785,7 @@ public class CveDB {
* @param identifiedVersion the identified version of the dependency being analyzed
* @return true if the identified version is affected, otherwise false
*/
protected Entry<String, Boolean> getMatchingSoftware(Map<String, Boolean> vulnerableSoftware, String vendor, String product,
Entry<String, Boolean> getMatchingSoftware(Map<String, Boolean> vulnerableSoftware, String vendor, String product,
DependencyVersion identifiedVersion) {
final boolean isVersionTwoADifferentProduct = "apache".equals(vendor) && "struts".equals(product);