minor, safe fix for compiler warning.
diff --git a/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/REMStandardBeanProxyFactory.java b/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/REMStandardBeanProxyFactory.java index ba2e374..b5fddb3 100644 --- a/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/REMStandardBeanProxyFactory.java +++ b/plugins/org.eclipse.jem.proxy/proxyRemote/org/eclipse/jem/internal/proxy/remote/REMStandardBeanProxyFactory.java
@@ -11,7 +11,7 @@ package org.eclipse.jem.internal.proxy.remote; /* * $RCSfile: REMStandardBeanProxyFactory.java,v $ - * $Revision: 1.16 $ $Date: 2005/08/24 20:39:07 $ + * $Revision: 1.16.2.1 $ $Date: 2007/04/15 00:14:11 $ */ @@ -455,7 +455,7 @@ case Commands.THROW: IREMBeanProxy newThrowProxy = null; try { - IREMBeanTypeProxy newThrowType = newThrowType = getBeanType(value.classID); + IREMBeanTypeProxy newThrowType = getBeanType(value.classID); newThrowProxy = newThrowType.newBeanProxy(new Integer(value.objectID)); if (newThrowProxy != null) registerProxy(newThrowProxy);