vgritsenko 2004/01/28 07:33:21
Modified: src/java/org/apache/cocoon/components/flow/javascript/fom
FOM_WebContinuation.java
Log:
trailing spaces
Revision Changes Path
1.5 +6 -7
cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/FOM_WebContinuation.java
Index: FOM_WebContinuation.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/flow/javascript/fom/FOM_WebContinuation.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- FOM_WebContinuation.java 28 Jan 2004 05:46:21 -0000 1.4
+++ FOM_WebContinuation.java 28 Jan 2004 15:33:21 -0000 1.5
@@ -65,7 +65,6 @@
import org.mozilla.javascript.Wrapper;
import org.mozilla.javascript.continuations.Continuation;
-
/**
*
* @version CVS $Id$
@@ -97,7 +96,7 @@
}
// new FOM_WebContinuation([Continuation] continuation,
- // [FOM_WebContinuation] parent,
+ // [FOM_WebContinuation] parent,
// [Number] timeToLive)
public static Object jsConstructor(Context cx, Object[] args,
Function ctorObj,
@@ -114,7 +113,7 @@
}
int timeToLive = 0;
if (args.length > 2) {
- timeToLive =
+ timeToLive =
(int)org.mozilla.javascript.Context.toNumber(args[2]);
}
WebContinuation wk;
@@ -145,7 +144,7 @@
public Continuation jsGet_continuation() {
return (Continuation)wk.getContinuation();
}
-
+
public FOM_WebContinuation jsFunction_getParent() {
WebContinuation parent = wk.getParentContinuation();
if (parent == null) return null;
@@ -155,7 +154,7 @@
pwk.getClassName()));
return pwk;
}
-
+
public NativeArray jsFunction_getChildren() throws Exception {
List list = wk.getChildren();
NativeArray arr =
@@ -250,7 +249,7 @@
if (c == null) return null;
FOM_WebContinuation pwk = new FOM_WebContinuation(c);
pwk.setParentScope(getParentScope());
- pwk.setPrototype(getClassPrototype(getParentScope(),
+ pwk.setPrototype(getClassPrototype(getParentScope(),
pwk.getClassName()));
return pwk;