소스 검색

Less verbose debug output

tags/7.0.0.alpha2
Leif Åstrand 12 년 전
부모
커밋
0e51c11fb0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/com/vaadin/terminal/gwt/client/Util.java

+ 1
- 1
src/com/vaadin/terminal/gwt/client/Util.java 파일 보기

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

Loading…
취소
저장