|
From: Michael R. <mr...@us...> - 2004-08-10 13:29:18
|
Update of /cvsroot/openorb/OpenORB/src/examples/org/openorb/orb/examples/dynany In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7788/src/examples/org/openorb/orb/examples/dynany Modified Files: Client.java Server.java Log Message: Fixed the remaining checkstyle warnings Index: Client.java =================================================================== RCS file: /cvsroot/openorb/OpenORB/src/examples/org/openorb/orb/examples/dynany/Client.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Client.java 19 Feb 2004 07:21:30 -0000 1.4 +++ Client.java 10 Aug 2004 13:28:38 -0000 1.5 @@ -8,8 +8,9 @@ package org.openorb.orb.examples.dynany; -public class Client +public final class Client { + // do not instantiate private Client() { } Index: Server.java =================================================================== RCS file: /cvsroot/openorb/OpenORB/src/examples/org/openorb/orb/examples/dynany/Server.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Server.java 19 Feb 2004 07:21:30 -0000 1.3 +++ Server.java 10 Aug 2004 13:28:38 -0000 1.4 @@ -8,8 +8,9 @@ package org.openorb.orb.examples.dynany; -public class Server +public final class Server { + // do not instantiate private Server() { } |