diff --git a/bundles/org.palladiosimulator.pcm/META-INF/MANIFEST.MF b/bundles/org.palladiosimulator.pcm/META-INF/MANIFEST.MF index 7753abf09a..1b7f6c1af0 100644 --- a/bundles/org.palladiosimulator.pcm/META-INF/MANIFEST.MF +++ b/bundles/org.palladiosimulator.pcm/META-INF/MANIFEST.MF @@ -89,7 +89,8 @@ Require-Bundle: org.eclipse.core.runtime, de.uka.ipd.sdq.probfunction;visibility:=reexport, de.uka.ipd.sdq.stoex;visibility:=reexport, de.uka.ipd.sdq.units;visibility:=reexport, - de.uka.ipd.sdq.errorhandling.core;bundle-version="5.2.0", + de.uka.ipd.sdq.errorhandling, + org.palladiosimulator.pcm.workflow;resolution:=optional, org.eclipse.xtext, org.eclipse.xtext.xbase, org.antlr.runtime;bundle-version="[3.2.0,3.2.1)", diff --git a/bundles/org.palladiosimulator.pcm/src/org/palladiosimulator/pcm/stochasticexpressions/parser/ErrorEntry.java b/bundles/org.palladiosimulator.pcm/src/org/palladiosimulator/pcm/stochasticexpressions/parser/ErrorEntry.java index 4ba1eb68f7..4a1a4b74bb 100644 --- a/bundles/org.palladiosimulator.pcm/src/org/palladiosimulator/pcm/stochasticexpressions/parser/ErrorEntry.java +++ b/bundles/org.palladiosimulator.pcm/src/org/palladiosimulator/pcm/stochasticexpressions/parser/ErrorEntry.java @@ -2,8 +2,8 @@ import org.antlr.runtime.RecognitionException; -import de.uka.ipd.sdq.errorhandling.core.IIssue; -import de.uka.ipd.sdq.errorhandling.core.SeverityEnum; +import de.uka.ipd.sdq.errorhandling.IIssue; +import de.uka.ipd.sdq.errorhandling.SeverityEnum; public class ErrorEntry implements IIssue { private RecognitionException ex = null;