Update of /cvsroot/openorb/OpenORB/src/examples/org/openorb/orb/examples/obv/valuetype
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7788/src/examples/org/openorb/orb/examples/obv/valuetype
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/obv/valuetype/Client.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Client.java 16 Feb 2004 09:41:55 -0000 1.3
+++ Client.java 10 Aug 2004 13:28:40 -0000 1.4
@@ -8,8 +8,13 @@
package org.openorb.orb.examples.obv.valuetype;
-public class Client
+public final class Client
{
+ // do not instantiate
+ private Client()
+ {
+ }
+
public static void main( String[] args )
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init( args, null );
Index: Server.java
===================================================================
RCS file: /cvsroot/openorb/OpenORB/src/examples/org/openorb/orb/examples/obv/valuetype/Server.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Server.java 16 Feb 2004 09:41:56 -0000 1.2
+++ Server.java 10 Aug 2004 13:28:40 -0000 1.3
@@ -8,8 +8,13 @@
package org.openorb.orb.examples.obv.valuetype;
-public class Server
+public final class Server
{
+ // do not instantiate
+ private Server()
+ {
+ }
+
public static void main( String[] args )
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init( args, null );
|