commit | ea66e068b5d29ef6a06014a6e457e3b4508925e8 | [log] [tgz] |
---|---|---|
author | Alexander Kurtakov <akurtako@redhat.com> | Fri Jun 12 11:00:45 2020 +0300 |
committer | Alexander Kurtakov <akurtako@redhat.com> | Fri Jun 12 11:00:45 2020 +0300 |
tree | d4841a38f5f1f46af6273e94ba9478a80bcea83f | |
parent | 83f52b64d84f616eb14c6de6489f3412afa778e0 [diff] |
Fix _ used as identifier giving warning on Java 8 Change-Id: I975d6e009a8debfe8070689ba55c0e87f7b3821e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
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 e462884..20f9406 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 @@ 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()); } }