|
From: Michael R. <mr...@us...> - 2004-08-10 13:28:48
|
Update of /cvsroot/openorb/OpenORB/src/examples/org/openorb/orb/examples/interceptors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7788/src/examples/org/openorb/orb/examples/interceptors 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/interceptors/Client.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Client.java 3 Oct 2002 18:28:25 -0000 1.2 +++ Client.java 10 Aug 2004 13:28:39 -0000 1.3 @@ -8,8 +8,13 @@ package org.openorb.orb.examples.interceptors; -public class Client +public final class Client { + // do not instantiate + private Client() + { + } + public static void main( String[] args ) { java.util.Properties props = new java.util.Properties(); Index: Server.java =================================================================== RCS file: /cvsroot/openorb/OpenORB/src/examples/org/openorb/orb/examples/interceptors/Server.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Server.java 3 Oct 2002 18:28:25 -0000 1.2 +++ Server.java 10 Aug 2004 13:28:39 -0000 1.3 @@ -8,8 +8,13 @@ package org.openorb.orb.examples.interceptors; -public class Server +public final class Server { + // do not instantiate + private Server() + { + } + public static void main( String[] args ) { java.util.Properties props = new java.util.Properties(); |