Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.script.dsl.tests/src/org/eclipse/osee/orcs/script/dsl/tests/ParserVerification.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.script.dsl.tests/src/org/eclipse/osee/orcs/script/dsl/tests/ParserVerification.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.orcs.script.dsl.tests/src/org/eclipse/osee/orcs/script/dsl/tests/ParserVerification.java b/plugins/org.eclipse.osee.orcs.script.dsl.tests/src/org/eclipse/osee/orcs/script/dsl/tests/ParserVerification.java
index e6613f851dc..8e5816337d1 100644
--- a/plugins/org.eclipse.osee.orcs.script.dsl.tests/src/org/eclipse/osee/orcs/script/dsl/tests/ParserVerification.java
+++ b/plugins/org.eclipse.osee.orcs.script.dsl.tests/src/org/eclipse/osee/orcs/script/dsl/tests/ParserVerification.java
@@ -87,8 +87,8 @@ public final class ParserVerification {
public void checkRuleErrors(Class<? extends EObject> rule, String textToParse, String... expectedErrorSubstrings) {
List<SyntaxErrorMessage> errors = checkRule(rule, textToParse, true);
- Set<String> matchingSubstrings = new HashSet<String>();
- Set<String> assertedErrors = new HashSet<String>();
+ Set<String> matchingSubstrings = new HashSet<>();
+ Set<String> assertedErrors = new HashSet<>();
boolean hadError = false;
for (final SyntaxErrorMessage err : errors) {

Back to the top