Merge "Fix for bug 5115066 Handler override of toString() hides derived class name"
This commit is contained in:
@@ -567,7 +567,7 @@ public class Handler {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Handler{"
|
||||
return "Handler (" + getClass().getName() + ") {"
|
||||
+ Integer.toHexString(System.identityHashCode(this))
|
||||
+ "}";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user