minor bug fix with sorted set

Former-commit-id: 542d7f92b47cae01e16e59da3e66ee4e80d9d265
This commit is contained in:
Jeremy Long
2013-04-18 06:25:12 -04:00
parent d30910e711
commit 99ce04a62f

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;
}