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