Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjeffliu2005-11-10 04:28:24 +0000
committerjeffliu2005-11-10 04:28:24 +0000
commitcb471288af52dd4343497a08cb82e4d55508a215 (patch)
treede1f52be5e8223bf906eef74e52b0befc14b1ff1 /plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/TimerQueue.java
parentbc4a8cb9aa6de48ab6f28a42d5a6af9742b28441 (diff)
downloadwebtools.common-cb471288af52dd4343497a08cb82e4d55508a215.tar.gz
webtools.common-cb471288af52dd4343497a08cb82e4d55508a215.tar.xz
webtools.common-cb471288af52dd4343497a08cb82e4d55508a215.zip
[108513] Use the new Eclipse way of doing message bundles
Diffstat (limited to 'plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/TimerQueue.java')
-rw-r--r--plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/TimerQueue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/TimerQueue.java b/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/TimerQueue.java
index 3ca9284c8..65edbae93 100644
--- a/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/TimerQueue.java
+++ b/plugins/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/TimerQueue.java
@@ -191,7 +191,7 @@ class TimerQueue implements Runnable {
synchronized void start() {
if (running) {
- throw new RuntimeException(WTPCommonUIResourceHandler.getString("TimerQueue_ERROR_0")); //$NON-NLS-1$
+ throw new RuntimeException(WTPCommonUIResourceHandler.TimerQueue_ERROR_0); //$NON-NLS-1$
}
Thread timerThread = new Thread(this, "TimerQueue");//$NON-NLS-1$
try {

Back to the top