Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/PEArchive.java')
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/PEArchive.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/PEArchive.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/PEArchive.java
index d4a00b6d05e..226ee4d8cd5 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/PEArchive.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/PEArchive.java
@@ -240,7 +240,7 @@ public class PEArchive {
if (headers != null)
return;
- Vector<ARHeader> v = new Vector<ARHeader>();
+ Vector<ARHeader> v = new Vector<>();
try {
//
// Check for EOF condition
@@ -298,7 +298,7 @@ public class PEArchive {
}
public String[] extractFiles(String outdir, String[] names) throws IOException {
- Vector<String> names_used = new Vector<String>();
+ Vector<String> names_used = new Vector<>();
String object_name;
int count;

Back to the top