diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2007-12-14 10:16:22 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2007-12-14 10:16:22 +0000 |
commit | 81c1527631aa278bbc696fa3e23d6fb05c613a9c (patch) | |
tree | 29e9c34293d59e69da9d12fa4be2478923056da0 /src/com/itmill/toolkit/terminal/SystemError.java | |
parent | 4d20bbdb46c3ad38e341a432867bbf5881836b2b (diff) | |
download | vaadin-framework-81c1527631aa278bbc696fa3e23d6fb05c613a9c.tar.gz vaadin-framework-81c1527631aa278bbc696fa3e23d6fb05c613a9c.zip |
refactored method name to correspond to the one (setDebugId) to be added to GWT (according to rumors)
svn changeset:3241/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/terminal/SystemError.java')
-rw-r--r-- | src/com/itmill/toolkit/terminal/SystemError.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/itmill/toolkit/terminal/SystemError.java b/src/com/itmill/toolkit/terminal/SystemError.java index b8571323fe..d82aa4d5bc 100644 --- a/src/com/itmill/toolkit/terminal/SystemError.java +++ b/src/com/itmill/toolkit/terminal/SystemError.java @@ -123,11 +123,11 @@ public class SystemError extends RuntimeException implements ErrorMessage { public void requestRepaintRequests() { } - public String getTestingIdentifier() { + public String getDebugId() { return null; } - public void setTestingIdentifier(String id) { + public void setDebugId(String id) { throw new UnsupportedOperationException( "Setting testing id for this Paintable is not implemented"); } |