Skip to content

Commit

Permalink
Eclipse 4.14 (RC1) JDT Patch for Groovy-Eclipse: JDT commit 362b8a1
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-milles committed Nov 29, 2019
1 parent 127e533 commit 28575a0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
jarprocessor.exclude.sign=true
jarprocessor.exclude.children=true
jarprocessor.exclude.pack=true
Original file line number Diff line number Diff line change
Expand Up @@ -2534,6 +2534,10 @@ public int getDeclarationModifiers(){
MethodScope methodScope = methodScope();
if (!methodScope.isInsideInitializer()){
// check method modifiers to see if deprecated
ReferenceContext ref = methodScope.referenceContext();
if (ref instanceof ModuleDeclaration) {
return ((ModuleDeclaration)ref).modifiers;
}
MethodBinding context = ((AbstractMethodDeclaration)methodScope.referenceContext).binding;
if (context != null)
return context.modifiers;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ Bug 408447 - compiler (log message) needs updating for copyright and bundle_qual
Several bundles changed and need to be touched
Bug 418646 - org.eclipse.jdt.core does not provide an artifact with classifier 'antadapter'
Bug 436266 - Use RC3 (plus) version of JDT compiler to build RC4
Bug 551547 - The library org.eclipse.jdt.core.compiler.batch_*.jar should be signed
1 change: 1 addition & 0 deletions jdt-patch/e414/org.eclipse.jdt.core/readme.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
2019-10-12: 0b941e3 (2019-12 M1)
2019-11-09: 3106c52 (2019-12 M2)
2019-11-23: f44d4bd (2019-12 M3)
2019-11-29: 362b8a1 (2019-12 RC1)

0 comments on commit 28575a0

Please sign in to comment.