diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeUnresolved.java @ 1420:44efca8a02d6

reformatting similar to other maxine projects (tabs, etc.)
author Lukas Stadler <lukas.stadler@oracle.com>
date Tue, 13 Jul 2010 11:47:55 -0700
parents 1b41af477605
children 760213a60e8b
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeUnresolved.java	Mon Jul 12 15:05:17 2010 -0700
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeUnresolved.java	Tue Jul 13 11:47:55 2010 -0700
@@ -1,22 +1,19 @@
 /*
- * Copyright (c) 2009 Sun Microsystems, Inc.  All rights reserved.
+ * Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
  *
- * Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product
- * that is described in this document. In particular, and without limitation, these intellectual property
- * rights may include one or more of the U.S. patents listed at http://www.sun.com/patents and one or
- * more additional patents or pending patent applications in the U.S. and in other countries.
+ * Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product that is
+ * described in this document. In particular, and without limitation, these intellectual property rights may include one
+ * or more of the U.S. patents listed at http://www.sun.com/patents and one or more additional patents or pending patent
+ * applications in the U.S. and in other countries.
  *
- * U.S. Government Rights - Commercial software. Government users are subject to the Sun
- * Microsystems, Inc. standard license agreement and applicable provisions of the FAR and its
- * supplements.
+ * U.S. Government Rights - Commercial software. Government users are subject to the Sun Microsystems, Inc. standard
+ * license agreement and applicable provisions of the FAR and its supplements.
  *
- * Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Java and Solaris are trademarks or
- * registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks
- * are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the
- * U.S. and other countries.
+ * Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Java and Solaris are trademarks or registered
+ * trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and
+ * are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries.
  *
- * UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open
- * Company, Ltd.
+ * UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd.
  */
 package com.sun.hotspot.c1x;
 
@@ -38,14 +35,14 @@
      * @param cpi the index in {@code constantPool} of the unresolved type reference
      */
     public HotSpotTypeUnresolved(String name) {
-    	this.name = name;
+        this.name = name;
     }
 
     public String name() {
-    	return name;
+        return name;
     }
 
-    public Class<?> javaClass() {
+    public Class< ? > javaClass() {
         throw unresolved("javaClass");
     }
 
@@ -94,17 +91,17 @@
     }
 
     public RiType componentType() {
-    	// TODO: Implement
-    	throw new UnsupportedOperationException();
+        // TODO: Implement
+        throw new UnsupportedOperationException();
     }
 
     public RiType exactType() {
         throw unresolved("exactType()");
     }
-    
+
     public RiType arrayOf() {
-    	// TODO: Implement
-    	throw new UnsupportedOperationException();
+        // TODO: Implement
+        throw new UnsupportedOperationException();
     }
 
     public RiMethod resolveMethodImpl(RiMethod method) {
@@ -112,7 +109,7 @@
     }
 
     public CiKind kind() {
-    	// TODO: Check if this is correct.
+        // TODO: Check if this is correct.
         return CiKind.Object;
     }
 
@@ -140,7 +137,7 @@
     }
 
     public CiKind getRepresentationKind(RiType.Representation r) {
-    	// TODO: Check if this is correct.
+        // TODO: Check if this is correct.
         return CiKind.Object;
     }
 }