Type arguments in OutNetMessage

This commit is contained in:
str4d
2013-11-21 02:27:03 +00:00
parent 688dd23111
commit 693cc828c2

View File

@@ -283,8 +283,8 @@ public class OutNetMessage implements CDPQEntry {
_failedTransports.add(transportStyle);
}
public synchronized Set getFailedTransports() {
return (_failedTransports == null ? Collections.EMPTY_SET : _failedTransports);
public synchronized Set<String> getFailedTransports() {
return (_failedTransports == null ? Collections.<String> emptySet() : _failedTransports);
}
/** when did the sending process begin */