Skip to content

Commit

Permalink
Added getter for workingCopyOwner and toBeBuiltComputer with protected
Browse files Browse the repository at this point in the history
access
Signed-off-by: Shashwat Anand <shashwat.work@gmail.com>
  • Loading branch information
Shashwat Anand committed Jul 20, 2023
1 parent 10e72ba commit 65dab7e
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 65dab7e

Please sign in to comment.