diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2012-08-28 10:16:58 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-28 11:31:52 +0300 |
commit | 05964e7adaed15b7bda6ba3c49ce226ec4ff723a (patch) | |
tree | b76381be637511581aa2b0d9e578c6eb925ccf8e /server/src/com/vaadin/terminal | |
parent | c6d43cc88fb0ef4853e07be54fc76a6aa1dc9e23 (diff) | |
download | vaadin-framework-05964e7adaed15b7bda6ba3c49ce226ec4ff723a.tar.gz vaadin-framework-05964e7adaed15b7bda6ba3c49ce226ec4ff723a.zip |
Renamed Component.debugId to id (#3700)
Applied patch from Pekka with minor changes
(@deprecation javadoc, call the real methods from deprecated methods in AbstractComponent)
Diffstat (limited to 'server/src/com/vaadin/terminal')
-rw-r--r-- | server/src/com/vaadin/terminal/gwt/server/ComponentSizeValidator.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/terminal/gwt/server/ComponentSizeValidator.java b/server/src/com/vaadin/terminal/gwt/server/ComponentSizeValidator.java index 6ebdace3e3..2349be1974 100644 --- a/server/src/com/vaadin/terminal/gwt/server/ComponentSizeValidator.java +++ b/server/src/com/vaadin/terminal/gwt/server/ComponentSizeValidator.java @@ -372,9 +372,9 @@ public class ComponentSizeValidator implements Serializable { err.append("\""); } - if (component.getDebugId() != null) { - err.append(" debugId: "); - err.append(component.getDebugId()); + if (component.getId() != null) { + err.append(" id: "); + err.append(component.getId()); } if (createLoc != null) { |