[teiid-commits] teiid SVN: r682 - trunk/client/src/main/java/com/metamatrix/common/comm/platform/client.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Wed Apr 1 09:51:04 EDT 2009


Author: tejones
Date: 2009-04-01 09:51:04 -0400 (Wed, 01 Apr 2009)
New Revision: 682

Modified:
   trunk/client/src/main/java/com/metamatrix/common/comm/platform/client/ServerAdminFactory.java
Log:
TEIID-422 - Removed extraneous getSystem() call.

Modified: trunk/client/src/main/java/com/metamatrix/common/comm/platform/client/ServerAdminFactory.java
===================================================================
--- trunk/client/src/main/java/com/metamatrix/common/comm/platform/client/ServerAdminFactory.java	2009-04-01 13:10:03 UTC (rev 681)
+++ trunk/client/src/main/java/com/metamatrix/common/comm/platform/client/ServerAdminFactory.java	2009-04-01 13:51:04 UTC (rev 682)
@@ -214,10 +214,7 @@
 		ServerAdmin serverAdmin = (ServerAdmin)Proxy.newProxyInstance(Thread.currentThread()
 				.getContextClassLoader(), new Class[] { ServerAdmin.class }, new ReconnectingProxy(p));
     	
-        //make a method call, to test that we are connected 
-    	serverAdmin.getSystem();
-        
-        return serverAdmin;
+       return serverAdmin;
     }
     
 }




More information about the teiid-commits mailing list