Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private Optional<EObject> findInResource(Predicate<EObject> condition, Resource
* @return Returns true, if one element with the target type could be found in the resource. Otherwise, the method
* returns false
*/
private boolean isTargetInResource(EClass targetType, Resource resource) {
public boolean isTargetInResource(EClass targetType, Resource resource) {
Comment thread
sebinside marked this conversation as resolved.
if (resource != null) {
for (EObject c : resource.getContents()) {
if (targetType.isSuperTypeOf(c.eClass())) {
Expand Down