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.java 28 Jun 2004 08:28:38 -0000 1.13
> +++ ContinuationClassLoader.java 29 Jun 2004 15:07:14 -0000 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);
> - }
> -