[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/transport/multiplex/config ...

Ron Sigal ron_sigal at yahoo.com
Thu Nov 9 13:22:42 EST 2006


  User: rsigal  
  Date: 06/11/09 13:22:42

  Modified:    src/tests/org/jboss/test/remoting/transport/multiplex/config  
                        ConfigurationByMapSameStaticObjectsTestServer.java
                        ConfigurationByMapDiffStaticObjectsTestServer.java
  Log:
  JBREM-628:  Wrapped ints in Integers in log.info() calls for jdk 1.4.
  
  Revision  Changes    Path
  1.4       +3 -3      JBossRemoting/src/tests/org/jboss/test/remoting/transport/multiplex/config/ConfigurationByMapSameStaticObjectsTestServer.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConfigurationByMapSameStaticObjectsTestServer.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/transport/multiplex/config/ConfigurationByMapSameStaticObjectsTestServer.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ConfigurationByMapSameStaticObjectsTestServer.java	7 Nov 2006 22:16:32 -0000	1.3
  +++ ConfigurationByMapSameStaticObjectsTestServer.java	9 Nov 2006 18:22:42 -0000	1.4
  @@ -40,13 +40,13 @@
      protected void runTest() throws Exception
      {
         log.info("starting runTest()");
  -      log.info(is.read());
  +      log.info(new Integer(is.read()));
         Th t1 = new Th(connectorURI1, "ConfigurationByMapSameStaticObjectsTestServer.1");
         t1.start();
  -      log.info(is.read());
  +      log.info(new Integer(is.read()));
         Th t2 = new Th(connectorURI2, "ConfigurationByMapSameStaticObjectsTestServer.2");
         t2.start();
  -      log.info(is.read());
  +      log.info(new Integer(is.read()));
         synchronized (t1) {t1.notify();}
         log.info("closed client 1.1");
         synchronized (t2) {t2.notify();}
  
  
  
  1.4       +4 -4      JBossRemoting/src/tests/org/jboss/test/remoting/transport/multiplex/config/ConfigurationByMapDiffStaticObjectsTestServer.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConfigurationByMapDiffStaticObjectsTestServer.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/transport/multiplex/config/ConfigurationByMapDiffStaticObjectsTestServer.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ConfigurationByMapDiffStaticObjectsTestServer.java	7 Nov 2006 22:16:32 -0000	1.3
  +++ ConfigurationByMapDiffStaticObjectsTestServer.java	9 Nov 2006 18:22:42 -0000	1.4
  @@ -41,16 +41,16 @@
      protected void runTest() throws Exception
      {
         log.info("starting runTest()");
  -      log.info(is.read());
  +      log.info(new Integer(is.read()));
         Th t1 = new Th(connectorURI3, "ConfigurationByMapDiffStaticObjectsTestServer.1");
         t1.start();
  -      log.info(is.read());
  +      log.info(new Integer(is.read()));
         synchronized (t1) {t1.notify();}
         log.info("closed client 2.1");
  -      log.info(is.read());
  +      log.info(new Integer(is.read()));
         Th t2 = new Th(connectorURI4, "ConfigurationByMapDiffStaticObjectsTestServer.2");
         t2.start();
  -      log.info(is.read());
  +      log.info(new Integer(is.read()));
         synchronized (t2) {t2.notify();}
         log.info("concluding runTest()");
      }
  
  
  



More information about the jboss-cvs-commits mailing list