comparison graal/com.oracle.max.criutils/src/com/oracle/max/criutils/BaseUnresolvedMethod.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 432c40a691ce
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
60 @Override 60 @Override
61 public boolean equals(Object o) { 61 public boolean equals(Object o) {
62 return o == this; 62 return o == this;
63 } 63 }
64 64
65 public StackTraceElement toStackTraceElement(int bci) {
66 return new StackTraceElement(CiUtil.toJavaName(holder), name, null, -1);
67 }
68
69 @Override 65 @Override
70 public String toString() { 66 public String toString() {
71 return CiUtil.format("%H.%n(%p) [unresolved]", this); 67 return CiUtil.format("%H.%n(%p) [unresolved]", this);
72 } 68 }
73 69