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

improved completion message

parent 0b66dbe2
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ public class AllPduSender
{
// each case value is DISPDUType
case OTHER: // 0
System.out.println ("*** Note: DISPDUType." + pdu.name() + " not supported"); // TODO why was this received?
System.out.println ("*** Note: DISPDUType." + pdu.name() + "=" + pdu.getValue() + " not supported"); // TODO why was this received?
break; // nothing to send
case ENTITY_STATE: // 1
......@@ -369,7 +369,7 @@ public class AllPduSender
// https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments/src/MV3500Cohort2018JulySeptember/projects/LoeffelmanSeverson
CommentPdu newCommentPdu = new CommentPdu();
ArrayList<VariableDatum> payloadList = new ArrayList<VariableDatum>();
ArrayList<VariableDatum> payloadList = new ArrayList<>();
ArrayList<String> commentsList = new ArrayList<>();
commentsList.add("Hello CommentPDU");
......@@ -472,7 +472,7 @@ public class AllPduSender
public static void main(String args[])
{
AllPduSender allPduSender;
int totalSentPdus = 0;
int totalSentPdus;
if (args.length == 2)
{
......
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