Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordwagelaar2013-05-21 18:46:33 +0000
committerdwagelaar2013-05-21 18:46:33 +0000
commitea8344f31c3c366421169900c33027d301e6968d (patch)
treed575deef74166fa065f83670c1e52d0994839839 /plugins/org.eclipse.m2m.atl.emftvm
parente93843540766e2e031155798e3a6378c094727d9 (diff)
downloadorg.eclipse.atl-ea8344f31c3c366421169900c33027d301e6968d.tar.gz
org.eclipse.atl-ea8344f31c3c366421169900c33027d301e6968d.tar.xz
org.eclipse.atl-ea8344f31c3c366421169900c33027d301e6968d.zip
Move "synchronized" keyword.
Diffstat (limited to 'plugins/org.eclipse.m2m.atl.emftvm')
-rw-r--r--plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/ExecEnvImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/ExecEnvImpl.java b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/ExecEnvImpl.java
index fd36dbeb..ad13b412 100644
--- a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/ExecEnvImpl.java
+++ b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/ExecEnvImpl.java
@@ -1165,7 +1165,7 @@ public class ExecEnvImpl extends EObjectImpl implements ExecEnv {
* <!-- end-user-doc -->
* @generated NOT
*/
- public synchronized Module loadModule(final ModuleResolver resolver, final String name) {
+ public Module loadModule(final ModuleResolver resolver, final String name) {
return loadModule(resolver, name, true);
}
@@ -1175,7 +1175,7 @@ public class ExecEnvImpl extends EObjectImpl implements ExecEnv {
* <!-- end-user-doc -->
* @generated NOT
*/
- public Module loadModule(final ModuleResolver resolver, final String name, final boolean validate) {
+ public synchronized Module loadModule(final ModuleResolver resolver, final String name, final boolean validate) {
resetJITCompiler();
if (isRuleStateCompiled()) {
for (Rule r : getRules()) {

Back to the top