implement Throwable.resolveTrace(); bugfixes

This commit is contained in:
Joel Dice
2007-07-14 12:37:04 -06:00
parent 2df8a60a78
commit 3121002ffd
7 changed files with 81 additions and 36 deletions

View File

@ -19,6 +19,6 @@ public final class Class <T> {
private Class() { }
public String getName() {
return new String(name, 0, name.length, false);
return new String(name, 0, name.length - 1, false);
}
}