Skip to content
Snippets Groups Projects
Commit 9e21fbc3 authored by terry-norbraten's avatar terry-norbraten
Browse files

extra omitted case

parent 11b17438
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,11 @@ public class PduReaderPlayer
sendToNet = Boolean.valueOf(args[1]);
break;
case 3:
outDir = args[0];
mcast = args[1];
port = Integer.parseInt(args[2]);
break;
case 4:
outDir = args[0];
mcast = args[1];
port = Integer.parseInt(args[2]);
......@@ -52,6 +57,7 @@ public class PduReaderPlayer
default:
System.err.println("Usage: PduReaderPlayer() or "
+ "PduReaderPlayer(\"outputdir\", \"sendToNet true/false\") or "
+ "PduReaderPlayer(\"outputdir\", \"ipPort\", \"sendToNet true/false\") or "
+ "PduReaderPlayer(\"outputdir\", \"multicast address\", \"ipPort\", \"sendToNet true/false\"");
System.exit(1);
}
......
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