replace slashes with dots in value returned by StackTraceElement.getClassName to make Classpath's java.util.logging.Logger happy

This commit is contained in:
Joel Dice 2009-06-06 21:08:36 -06:00
parent 61ba2d617e
commit 70eedcdf97

View File

@ -56,7 +56,7 @@ public class StackTraceElement {
}
public String getClassName() {
return class_;
return class_.replace('/', '.');
}
public String getMethodName() {