diff graal/com.oracle.max.asmdis/src/com/sun/max/asm/ppc/CRF.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/ppc/CRF.java	Sun Dec 18 05:23:52 2011 +0100
+++ b/graal/com.oracle.max.asmdis/src/com/sun/max/asm/ppc/CRF.java	Sun Dec 18 05:24:06 2011 +0100
@@ -67,7 +67,7 @@
     /**
      * Given the index of a bit within this 4-bit field, returns the index of the same bit
      * in the 32-bit Condition Register.
-     * 
+     *
      * @throws IllegalArgumentException if n is not between 0 and 3 inclusive
      */
     public int bitFor(int n) {
@@ -137,6 +137,6 @@
      */
     public static final int UN = 3;
 
-    public static final Enumerator<CRF> ENUMERATOR = new Enumerator<CRF>(CRF.class);
+    public static final Enumerator<CRF> ENUMERATOR = new Enumerator<>(CRF.class);
 
 }