]> source.dussan.org Git - vaadin-framework.git/commitdiff
Less verbose debug output
authorLeif Åstrand <leif@vaadin.com>
Tue, 3 Apr 2012 08:23:04 +0000 (11:23 +0300)
committerLeif Åstrand <leif@vaadin.com>
Tue, 3 Apr 2012 08:23:04 +0000 (11:23 +0300)
src/com/vaadin/terminal/gwt/client/Util.java

index 086da66f4a42bef4fcdabd2398c9aa94e7f4437d..faaad8c7d25c670c8b72a0d098489fd9427d1e07 100644 (file)
@@ -1133,6 +1133,6 @@ public class Util {
         if (p == null) {
             return "null";
         }
-        return p.getClass().getName() + " (" + p.getConnectorId() + ")";
+        return getSimpleName(p) + " (" + p.getConnectorId() + ")";
     }
 }