Explorar el Código

Less verbose debug output

tags/7.0.0.alpha2
Leif Åstrand hace 12 años
padre
commit
0e51c11fb0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/com/vaadin/terminal/gwt/client/Util.java

+ 1
- 1
src/com/vaadin/terminal/gwt/client/Util.java Ver fichero

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

Cargando…
Cancelar
Guardar