Skip to content
Snippets Groups Projects
Commit b82e4b26 authored by brutzman's avatar brutzman
Browse files

don't sort packets alphabetically by default, improve readability

parent 7dacf158
No related branches found
No related tags found
No related merge requests found
......@@ -148,8 +148,8 @@ public class PduSender
}
}
// Sort the created PDUs by class name
Collections.sort(generatedPdusList, new ClassNameComparator());
// Sort the created PDUs by class name, if desired
// Collections.sort(generatedPdusList, new ClassNameComparator());
// Send the PDUs we created
InetAddress localMulticastAddress = InetAddress.getByName(DEFAULT_MULTICAST_ADDRESS);
......
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