Re: cvs commit: cocoon-2.1/src/java/org/apache/cocoon/components/modules/input XMLFileModule.java URLEncodeModule.java URLDecodeModule.java

2004-06-29 Thread Stephan Michels

Can you revert this change, I need this method time to time.
Thanks, Stephan.

   1.14  +50 -37
 cocoon-2.1/src/blocks/javaflow/java/org/apache/cocoon/components/flow/java/ContinuationClassLoader.java
   
   Index: ContinuationClassLoader.java
   ===
   RCS file: 
 /home/cvs/cocoon-2.1/src/blocks/javaflow/java/org/apache/cocoon/components/flow/java/ContinuationClassLoader.java,v
   retrieving revision 1.13
   retrieving revision 1.14
   diff -u -r1.13 -r1.14
   --- ContinuationClassLoader.java28 Jun 2004 08:28:38 -  1.13
   +++ ContinuationClassLoader.java29 Jun 2004 15:07:14 -  1.14
/**
   @@ -332,36 +375,6 @@
}
}

   -private void printFrameInfo(MethodGen method, ControlFlowGraph cfg) {
   -InstructionHandle handle = method.getInstructionList().getStart();
   -do {
   -System.out.println(handle);
   -try {
   -InstructionContext context = cfg.contextOf(handle);
   -
   -Frame f = context.getOutFrame(new ArrayList());
   -
   -LocalVariables lvs = f.getLocals();
   -System.out.print(Locales: );
   -for (int i = 0; i  lvs.maxLocals(); i++) {
   -System.out.print(lvs.get(i) + ,);
   -}
   -System.out.println();
   -
   -OperandStack os = f.getStack();
   -System.out.print( Stack: );
   -for (int i = 0; i  os.size(); i++) {
   -System.out.print(os.peek(i) + ,);
   -}
   -System.out.println();
   -}
   -catch (AssertionViolatedException ave) {
   -System.out.println(no frame information);
   -}
   -}
   -while ((handle = handle.getNext()) != null);
   -}
   -




Re: cvs commit: cocoon-2.1/src/java/org/apache/cocoon/components/modules/input XMLFileModule.java URLEncodeModule.java URLDecodeModule.java

2004-06-29 Thread Joerg Heinicke
On 29.06.2004 17:16, Stephan Michels wrote:
Can you revert this change,
Done.
I need this method time to time.
Sorry.
Thanks, Stephan.
Joerg