Skip to content

Commit

Permalink
allow for null transformation results
Browse files Browse the repository at this point in the history
Signed-off-by: Juergen Albert <j.albert@data-in-motion.biz>
  • Loading branch information
juergen-albert committed Feb 6, 2024
1 parent a350738 commit 882fada
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public <T extends EObject> T doTransformation(List<? extends EObject> inObjects)
if (outObjects.size() > 0) {
return (T) outObjects.get(0);
}
throw new IllegalStateException("Transformation failed with no result object");
return null;
}

/*
Expand Down

0 comments on commit 882fada

Please sign in to comment.