diff --git a/examples/src/OpenDis7Examples/AllPduSender.java b/examples/src/OpenDis7Examples/AllPduSender.java index 75960f7cdcb161e92de90de5ed7fc51dd9a2c367..b1d267682915bf22b98775c3a59588d62f20e32f 100755 --- a/examples/src/OpenDis7Examples/AllPduSender.java +++ b/examples/src/OpenDis7Examples/AllPduSender.java @@ -46,7 +46,7 @@ public class AllPduSender System.out.println("OpenDis7Examples.AllPduSender started..."); try { - System.out.println("Generate PDUs and note issues, if any..."); + System.out.println("Generate list of all PDU types and note issues, if any..."); List<Pdu> generatedPdusList = new ArrayList<>(); // Loop through all the enumerated PDU types, create a PDU for each type, @@ -446,6 +446,8 @@ public class AllPduSender String currentPduTypePadded = String.format("%-50s", aPdu.getPduType().toString()); // - indicates right padding of whitespace System.out.print ("Sent DIS PDU " + currentPduTypeValuePadded + " " + currentPduTypePadded ); System.out.println(" of type " + aPdu.getClass().getName()); + +// Thread.sleep(1000); // pause for debugging } catch (Exception ex) { System.out.println("Marshaling error" + ex);