diff graal/com.oracle.max.asmdis/src/com/sun/max/asm/gen/risc/RiscExternalInstruction.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
line wrap: on
line diff
--- a/graal/com.oracle.max.asmdis/src/com/sun/max/asm/gen/risc/RiscExternalInstruction.java	Sun Dec 18 05:23:52 2011 +0100
+++ b/graal/com.oracle.max.asmdis/src/com/sun/max/asm/gen/risc/RiscExternalInstruction.java	Sun Dec 18 05:24:06 2011 +0100
@@ -56,14 +56,14 @@
 
     public RiscExternalInstruction(RiscTemplate template, List<Argument> arguments) {
         this.template = template;
-        this.arguments = new LinkedList<Argument>(arguments);
+        this.arguments = new LinkedList<>(arguments);
         this.address = null;
         this.addressMapper = null;
     }
 
     public RiscExternalInstruction(RiscTemplate template, List<Argument> arguments, ImmediateArgument address, AddressMapper addressMapper) {
         this.template = template;
-        this.arguments = new LinkedList<Argument>(arguments);
+        this.arguments = new LinkedList<>(arguments);
         this.address = address;
         this.addressMapper = addressMapper;
     }