### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream.java,v retrieving revision 1.21 diff -u -r1.21 StackMapFrameCodeStream.java --- compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream.java 20 Sep 2007 18:18:25 -0000 1.21 +++ compiler/org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream.java 7 Nov 2007 03:57:58 -0000 @@ -413,6 +413,9 @@ if (this.stackDepthMarkers != null) { this.stackDepthMarkers.clear(); } + if (this.stackMarkers != null) { + this.stackMarkers.clear(); + } } public void initializeMaxLocals(MethodBinding methodBinding) { @@ -468,6 +471,9 @@ if (this.stackDepthMarkers != null) { this.stackDepthMarkers.clear(); } + if (this.stackMarkers != null) { + this.stackMarkers.clear(); + } } protected void writePosition(BranchLabel label) { super.writePosition(label);