Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/AR.java')
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/AR.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/AR.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/AR.java
index d80276b810a..4499a1c88fa 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/AR.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/AR.java
@@ -241,7 +241,7 @@ public class AR {
if (memberHeaders != null)
return;
- Vector<ARHeader> v = new Vector<ARHeader>();
+ Vector<ARHeader> v = new Vector<>();
try {
//
// Check for EOF condition
@@ -273,7 +273,7 @@ public class AR {
}
private 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