forked from I2P_Developers/i2p.i2p
Type arguments in OutNetMessage
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user