Update of /cvsroot/velcro/velcro/testsuite/simpletest/src/java/velcro/testsuite/simpletest/tests
In directory usw-pr-cvs1:/tmp/cvs-serv26430
Modified Files:
Test.java
Log Message:
Removed call to setState in messages since the default state is automatically set my the ActionMessageBase constructor.
Index: Test.java
===================================================================
RCS file: /cvsroot/velcro/velcro/testsuite/simpletest/src/java/velcro/testsuite/simpletest/tests/Test.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Test.java 14 Sep 2002 18:51:26 -0000 1.3
--- Test.java 30 Oct 2002 00:26:50 -0000 1.4
***************
*** 108,112 ****
ActionMessage msg = new ActionMessageBase();
msg.setType(Constants.TYPE_TEST1);
- msg.setState(Constants.STATE);
broadcaster.broadcast(msg);
broadcaster.remove();
--- 108,111 ----
***************
*** 121,125 ****
ActionMessage msg = new ActionMessageBase();
msg.setType(Constants.TYPE_TEST2);
- msg.setState(Constants.STATE);
broadcaster.broadcast(msg);
broadcaster.remove();
--- 120,123 ----
***************
*** 135,139 ****
ActionMessage msg = new ActionMessageBase();
msg.setType(Constants.TYPE_ALL);
- msg.setState(Constants.STATE);
broadcaster.broadcast(msg);
broadcaster.remove();
--- 133,136 ----
***************
*** 148,151 ****
--- 145,151 ----
/*
*$Log$
+ *Revision 1.4 2002/10/30 00:26:50 heathm
+ *Removed call to setState in messages since the default state is automatically set my the ActionMessageBase constructor.
+ *
*Revision 1.3 2002/09/14 18:51:26 heathm
*Set the state on all messages.
|