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

more flexible looping if break is hidden

parent b3056d7e
No related branches found
No related tags found
No related merge requests found
...@@ -69,8 +69,9 @@ public class MulticastReceiver { ...@@ -69,8 +69,9 @@ public class MulticastReceiver {
if (count < 10) System.out.print(" "); // prettier output formatting if (count < 10) System.out.print(" "); // prettier output formatting
System.out.print(count + ". \"" + firstCharacters + "\" "); // wrap string in quote marks System.out.print(count + ". \"" + firstCharacters + "\" "); // wrap string in quote marks
System.out.println("index=" + index + ", firstFloat=" + firstFloat + " secondFloat=" + secondFloat); System.out.println("index=" + index + ", firstFloat=" + firstFloat + " secondFloat=" + secondFloat);
System.out.println("MulticastReceiver loop complete.");
} }
System.out.println("MulticastReceiver loop complete.");
} }
catch(IOException e) catch(IOException e)
{ {
......
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