minor bug fix with sorted set

Former-commit-id: a53c5c220bb460b378583aa73c01ec2dfa81a196
This commit is contained in:
Jeremy Long
2013-04-18 06:25:12 -04:00
parent 1ded1b603e
commit a924e81adb

View File

@@ -135,7 +135,7 @@ public class Vulnerability implements Serializable, Comparable<Vulnerability> {
*
* @return the value of vulnerableSoftware
*/
public SortedSet<VulnerableSoftware> getVulnerableSoftware() {
public Set<VulnerableSoftware> getVulnerableSoftware() {
return vulnerableSoftware;
}