Skip to content

Commit

Permalink
[lang] Remove reference to JDT in "io.sarl.lang" module.
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Jan 31, 2020
1 parent 232005b commit a91b3de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions main/coreplugins/io.sarl.lang/META-INF/MANIFEST.MF
Expand Up @@ -18,13 +18,11 @@ Require-Bundle: io.sarl.lang.core;bundle-version="0.11.0";visibility:=reexport,
org.eclipse.osgi;bundle-version="3.15.100",
org.antlr.runtime;bundle-version="3.2.0",
org.objectweb.asm;bundle-version="7.2.0";resolution:=optional,
org.eclipse.jdt.core;bundle-version="3.20.0",
org.eclipse.emf.ecore;bundle-version="2.20.0",
org.eclipse.emf.common;bundle-version="2.17.0",
org.eclipse.core.runtime;bundle-version="3.17.0",
com.google.inject;bundle-version="4.1.0",
org.apache.commons.io;bundle-version="2.6.0",
slf4j.api;bundle-version="2.0.0"
org.eclipse.core.runtime;bundle-version="3.17.0"
Bundle-Activator: io.sarl.lang.SARLLangActivator
Export-Package: io.sarl.lang,
io.sarl.lang.bugfixes.pending.bug621,
Expand Down
Expand Up @@ -44,7 +44,6 @@
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.jdt.core.Flags;
import org.eclipse.xtend.core.jvmmodel.XtendJvmModelInferrer;
import org.eclipse.xtend.core.xtend.XtendFunction;
import org.eclipse.xtend.core.xtend.XtendMember;
Expand Down Expand Up @@ -1457,7 +1456,7 @@ public static String dump(Object object, boolean includeStaticField) {
boolean firstRound = true;

for (final Field field : fields) {
if (!includeStaticField && Flags.isStatic(field.getModifiers())) {
if (!includeStaticField && Modifier.isStatic(field.getModifiers())) {
continue;
}
if (!firstRound) {
Expand Down

0 comments on commit a91b3de

Please sign in to comment.