Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/parser/SaxChunkCollector.java')
-rw-r--r--plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/parser/SaxChunkCollector.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/parser/SaxChunkCollector.java b/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/parser/SaxChunkCollector.java
index ebb7e0e5218..ded7bda1eb9 100644
--- a/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/parser/SaxChunkCollector.java
+++ b/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/parser/SaxChunkCollector.java
@@ -27,12 +27,12 @@ public class SaxChunkCollector {
private String currentLocalName;
public SaxChunkCollector(ISaxElementHandler handler, String... collect) {
- this.collectionElement = new HashSet<String>();
+ this.collectionElement = new HashSet<>();
for (String item : collect) {
collectionElement.add(item);
}
this.handler = handler;
- collectionChunks = new ArrayList<String>();
+ collectionChunks = new ArrayList<>();
builder = new StringBuilder(5000);
}

Back to the top