Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-04-14 08:19:18 +0000
committerSarika Sinha2016-04-14 09:06:27 +0000
commit7bda1300c69f6d90dec074f85853c693a366a02f (patch)
treea4edc25160841bb36b2f247d5f4b6c7b9ef55fa7
parent53c857c742db810b265b2be00533a00139305216 (diff)
downloadeclipse.jdt.debug-7bda1300c69f6d90dec074f85853c693a366a02f.tar.gz
eclipse.jdt.debug-7bda1300c69f6d90dec074f85853c693a366a02f.tar.xz
eclipse.jdt.debug-7bda1300c69f6d90dec074f85853c693a366a02f.zip
Bug 491576 - Info severity not shown for 'No strictly compatible JRE...'
-rw-r--r--org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/EvaluationSourceGenerator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/EvaluationSourceGenerator.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/EvaluationSourceGenerator.java
index d5544b3f1..76cd0b0cd 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/EvaluationSourceGenerator.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/EvaluationSourceGenerator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -291,7 +291,7 @@ public class EvaluationSourceGenerator {
for (Iterator<String> iter = options.keySet().iterator(); iter.hasNext();) {
String key = iter.next();
String value = options.get(key);
- if (JavaCore.ERROR.equals(value) || JavaCore.WARNING.equals(value)) {
+ if (JavaCore.ERROR.equals(value) || JavaCore.WARNING.equals(value) || JavaCore.INFO.equals(value)) {
options.put(key, JavaCore.IGNORE);
}
}

Back to the top