Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-09-05 21:41:21 +0000
committerThomas Watson2013-09-06 18:45:46 +0000
commit75092469f948217c94704f6cb298d81b75d9f9d6 (patch)
tree260bb433e66ddca77cbd23f01415d2c15488a3a5 /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleDatabase.java
parentee16ee5520224d7e0604596c01d2737b25bd3449 (diff)
downloadrt.equinox.framework-75092469f948217c94704f6cb298d81b75d9f9d6.tar.gz
rt.equinox.framework-75092469f948217c94704f6cb298d81b75d9f9d6.tar.xz
rt.equinox.framework-75092469f948217c94704f6cb298d81b75d9f9d6.zip
Externalize Strings.I20130906-2000
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleDatabase.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleDatabase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleDatabase.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleDatabase.java
index eea2f234d..3ac8ec586 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleDatabase.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleDatabase.java
@@ -651,7 +651,7 @@ public class ModuleDatabase {
private void checkWrite() {
if (monitor.getWriteHoldCount() == 0)
- throw new IllegalMonitorStateException("Must hold the write lock.");
+ throw new IllegalMonitorStateException("Must hold the write lock."); //$NON-NLS-1$
}
/**

Back to the top