Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2019-09-20 07:06:47 +0000
committerSarika Sinha2019-09-20 07:06:53 +0000
commit7dad99366351e1c53227873b33b5b28aa4e617dd (patch)
treeadc5e09ee603628bfbb88a247a105743b26d47fc /org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LambdaExpression.java
parent42e8e7c7d3c0a2353712025cd77254613c5d31d7 (diff)
downloadeclipse.jdt.core-7dad99366351e1c53227873b33b5b28aa4e617dd.tar.gz
eclipse.jdt.core-7dad99366351e1c53227873b33b5b28aa4e617dd.tar.xz
eclipse.jdt.core-7dad99366351e1c53227873b33b5b28aa4e617dd.zip
Revert "BUG 544943 Merge remote-tracking branch 'origin/new_stack_map'"
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LambdaExpression.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LambdaExpression.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LambdaExpression.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LambdaExpression.java
index ae0633d514..d680669dcc 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LambdaExpression.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LambdaExpression.java
@@ -1300,7 +1300,7 @@ public class LambdaExpression extends FunctionalExpression implements IPolyExpre
codeStream.exitUserScope(this.scope);
codeStream.recordPositionsFrom(0, this.sourceEnd); // WAS declarationSourceEnd.
try {
- classFile.completeCodeAttribute(codeAttributeOffset, this.scope);
+ classFile.completeCodeAttribute(codeAttributeOffset);
} catch(NegativeArraySizeException e) {
throw new AbortMethod(this.scope.referenceCompilationUnit().compilationResult, null);
}

Back to the top