Skip to content

Commit

Permalink
Merge pull request #2757 from shashwatanand/shaanand-xtext-2756
Browse files Browse the repository at this point in the history
Added getter for workingCopyOwner and toBeBuiltComputer with protected
  • Loading branch information
cdietrich authored Jul 21, 2023
2 parents 10e72ba + 65dab7e commit 0fd1fd5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -807,5 +807,12 @@ private static boolean isCoreResourceGreaterOrEqual(Version version) {
}
return installedCoreResourcesVersion.compareTo(version) >= 0;
}

/**
* @since 2.32
*/
protected ToBeBuiltComputer getToBeBuiltComputer() {
return toBeBuiltComputer;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -685,5 +685,12 @@ public TypeURIHelper getTypeUriHelper() {
public JdtBasedTypeFactory getJdtBasedTypeFactory() {
return typeFactory;
}

/**
* @since 2.32
*/
protected WorkingCopyOwner getWorkingCopyOwner() {
return workingCopyOwner;
}

}

0 comments on commit 0fd1fd5

Please sign in to comment.