Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Roldan Betancort2009-05-20 17:26:22 +0000
committerVictor Roldan Betancort2009-05-20 17:26:22 +0000
commit0a979565f2cce67cf15709444f0a93e189a5194b (patch)
treede5969b4ae8a883d5c10b4e2adc9521ea9842b5c /plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/OnePendingExecutor.java
parente41897fe84a47ccdb34156c4ac05b64049fed458 (diff)
downloadcdo-0a979565f2cce67cf15709444f0a93e189a5194b.tar.gz
cdo-0a979565f2cce67cf15709444f0a93e189a5194b.tar.xz
cdo-0a979565f2cce67cf15709444f0a93e189a5194b.zip
[272193] [UI] Externalize Strings (Net4j)
https://bugs.eclipse.org/bugs/show_bug.cgi?id=272193
Diffstat (limited to 'plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/OnePendingExecutor.java')
-rw-r--r--plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/OnePendingExecutor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/OnePendingExecutor.java b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/OnePendingExecutor.java
index 972a82e452..e6b1e0438e 100644
--- a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/OnePendingExecutor.java
+++ b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/OnePendingExecutor.java
@@ -26,7 +26,7 @@ public class OnePendingExecutor implements Executor
{
if (this.command != null)
{
- throw new IllegalStateException("One command already pending");
+ throw new IllegalStateException("One command already pending"); //$NON-NLS-1$
}
this.command = command;

Back to the top