Skip to content
Snippets Groups Projects
Commit 9a638c80 authored by goapunk's avatar goapunk
Browse files

Store only 4 ip addresses because 5 exceed the maximum length.


Signed-off-by: default avatargoapunk <noobie@goapunks.net>
parent ba353b9f
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ class LanTcpPlugin extends TcpPlugin {
private static final Logger LOG =
Logger.getLogger(LanTcpPlugin.class.getName());
private static final int MAX_ADDRESSES = 5;
private static final int MAX_ADDRESSES = 4;
private static final String PROP_IP_PORTS = "ipPorts";
private static final String SEPARATOR = ",";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment