From a767d157629042c61de11986d30627677f15cf0d Mon Sep 17 00:00:00 2001 From: terry-norbraten <tnorb@comcast.net> Date: Mon, 27 Jul 2020 13:28:23 -0700 Subject: [PATCH] format --- src/edu/nps/moves/dis7/examples/EspduSender.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/edu/nps/moves/dis7/examples/EspduSender.java b/src/edu/nps/moves/dis7/examples/EspduSender.java index 1deb0e8e35..57c5a6a93e 100644 --- a/src/edu/nps/moves/dis7/examples/EspduSender.java +++ b/src/edu/nps/moves/dis7/examples/EspduSender.java @@ -93,7 +93,7 @@ public class EspduSender else if (networkModeString.equalsIgnoreCase("multicast")) { mode = NetworkMode.MULTICAST; if (!destinationIp.isMulticastAddress()) { - throw new RuntimeException("Sending to multicast address, but destination address " + destinationIp.toString() + "is not multicast"); + throw new RuntimeException("Sending to multicast address, but destination address " + destinationIp.toString() + " is not multicast"); } InetSocketAddress group = new InetSocketAddress(destinationIp, port); -- GitLab