Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaud Cuccuru2013-10-24 10:36:59 +0000
committerArnaud Cuccuru2013-10-24 10:36:59 +0000
commitbf905f3abb9e75068d902fa780cf7b0e50797d50 (patch)
treedf525349ef11b7e14e63c44e7e86bb0c64013617 /sandbox/Moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/integer/Max.java
parent4b18e001f3bd14050af59c0600ed7df36def4825 (diff)
downloadorg.eclipse.papyrus-bf905f3abb9e75068d902fa780cf7b0e50797d50.tar.gz
org.eclipse.papyrus-bf905f3abb9e75068d902fa780cf7b0e50797d50.tar.xz
org.eclipse.papyrus-bf905f3abb9e75068d902fa780cf7b0e50797d50.zip
401874: [moka] An OpaqueBehaviorExecution shall be implemented for all
opaque behaviors defined in the FoundationalModelLibrary https://bugs.eclipse.org/bugs/show_bug.cgi?id=401874 Adding opaque behavior implementations for Real functions, and fixing issues related to visibility of packages
Diffstat (limited to 'sandbox/Moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/integer/Max.java')
-rw-r--r--sandbox/Moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/integer/Max.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/Moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/integer/Max.java b/sandbox/Moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/integer/Max.java
index 90ff6290be7..b7b3e6954ec 100644
--- a/sandbox/Moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/integer/Max.java
+++ b/sandbox/Moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/integer/Max.java
@@ -16,11 +16,11 @@ package org.eclipse.papyrus.moka.fuml.standardlibrary.library.integer;
import java.util.ArrayList;
import java.util.List;
+import org.eclipse.papyrus.infra.core.Activator;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IntegerValue;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.Value;
import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.BasicBehaviors.OpaqueBehaviorExecution;
import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.BasicBehaviors.ParameterValue;
-import org.eclipse.papyrus.moka.fuml.debug.Debug;
public class Max extends OpaqueBehaviorExecution {
@@ -36,7 +36,7 @@ public class Max extends OpaqueBehaviorExecution {
outputs.add(result);
outputParameters.get(0).values = outputs;
} catch (Exception e) {
- Debug.println("An error occured during the execution of Max " + e.getMessage());
+ Activator.log.error("An error occured during the execution of Max " + e.getMessage(), e);
}
}

Back to the top