Skip to content

Commit

Permalink
reducing issues with epsilon src
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrizsanchez committed Feb 10, 2021
1 parent 2e13981 commit e51fce9
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@ public void setSrc(File src) {
this.src = Optional.ofNullable(src);
}

@Param(key="src")
public void setSrc(String src) {
this.src = Optional.ofNullable(new File(src));
}

@Input(key="src")
public File getSrc() {
return src.orElse(null);
Expand Down Expand Up @@ -205,7 +200,6 @@ public void execute(IModelFlowContext ctx) throws MFExecutionException {
getModule().getContext().getNativeTypeDelegates().add(new ExtensionPointToolNativeTypeDelegate());
}
try {
getModule().getContext().getModelRepository().getModels().stream().forEach(m->System.out.println(m.getName()));
result = getModule().execute();
} catch (EolRuntimeException e) {
throw new MFExecutionException(e.getReason(), e);
Expand Down

0 comments on commit e51fce9

Please sign in to comment.