jboynes 2003/10/31 09:03:22
Modified: modules/core/src/java/org/apache/geronimo/remoting
IntraVMRoutingInterceptor.java
Log:
Fix spelling on method sig
Revision Changes Path
1.6 +5 -5
incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/IntraVMRoutingInterceptor.java
Index: IntraVMRoutingInterceptor.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/IntraVMRoutingInterceptor.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- IntraVMRoutingInterceptor.java 31 Oct 2003 06:59:46 -0000 1.5
+++ IntraVMRoutingInterceptor.java 31 Oct 2003 17:03:22 -0000 1.6
@@ -82,7 +82,7 @@
}
/**
- *
+ *
*/
synchronized private void resolveNext() {
// Get the demarshaling interceptor to find out the classloader
scope that the target
@@ -93,7 +93,7 @@
ClassLoader child = Thread.currentThread().getContextClassLoader();
// Did we deserialize with the same app classloader that
- // the target belongs to??
+ // the target belongs to??
if (InvocationSupport.isAncestor(parent, child) && !allwaysMarshall)
{
// Then we can avoid demarshalling/marshalling
next = deMarshalingInterceptor.getNext();
@@ -154,11 +154,11 @@
this.deMarshalingInterceptorID = deMarshalingInterceptorID;
}
- public boolean getAllwaysMarshall() {
+ public boolean getAlwaysMarshall() {
return allwaysMarshall;
}
- public void setAllwaysMarshall(boolean value) {
+ public void setAlwaysMarshall(boolean value) {
allwaysMarshall=value;
}
}