Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-06-12 08:00:45 +0000
committerAlexander Kurtakov2020-06-12 08:00:45 +0000
commitea66e068b5d29ef6a06014a6e457e3b4508925e8 (patch)
treed4841a38f5f1f46af6273e94ba9478a80bcea83f /bundles
parent83f52b64d84f616eb14c6de6489f3412afa778e0 (diff)
downloadrt.equinox.bundles-ea66e068b5d29ef6a06014a6e457e3b4508925e8.tar.gz
rt.equinox.bundles-ea66e068b5d29ef6a06014a6e457e3b4508925e8.tar.xz
rt.equinox.bundles-ea66e068b5d29ef6a06014a6e457e3b4508925e8.zip
Fix _ used as identifier giving warning on Java 8I20200612-0650
Change-Id: I975d6e009a8debfe8070689ba55c0e87f7b3821e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java
index e462884d3..20f940626 100644
--- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java
+++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011, 2015 IBM Corporation and others.
+ * Copyright (c) 2011, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -677,7 +677,7 @@ public class RegionSystemTests extends AbstractRegionSystemTest {
try {
digraph.setDefaultRegion(pp1Region);
assertFalse("IllegalArgumentException not thrown for setting non-existing region as default", true);
- } catch (IllegalStateException _) {
+ } catch (IllegalStateException e) {
assertNull("DefaultRegion is not null", digraph.getDefaultRegion());
}
}

Back to the top