Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make several Funcotator methods and fields protected #8166

Merged
merged 1 commit into from
Feb 1, 2023
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 @@ -121,7 +121,7 @@ public FuncotatorEngine(final BaseFuncotatorArgumentCollection funcotatorArgs,
/**
* @return An unmodifiable {@link List<DataSourceFuncotationFactory>} being used by this {@link FuncotatorEngine} to create {@link Funcotation}s.
*/
List<DataSourceFuncotationFactory> getFuncotationFactories() {
public List<DataSourceFuncotationFactory> getFuncotationFactories() {
return Collections.unmodifiableList(dataSourceFactories);
}

Expand Down Expand Up @@ -427,7 +427,7 @@ public boolean onlyProducedIGRs() {
* @param annotationMap {@link Map} (of ANNOTATION_NAME : ANNOTATION_VALUE) to check
* @return A {@link LinkedHashMap} of annotations in the given {@code annotationMap} that do not occur in the given {@code dataSourceFactories}.
*/
private LinkedHashMap<String, String> getUnaccountedForAnnotations( final List<DataSourceFuncotationFactory> dataSourceFactories,
public LinkedHashMap<String, String> getUnaccountedForAnnotations( final List<DataSourceFuncotationFactory> dataSourceFactories,
final Map<String, String> annotationMap ) {
final LinkedHashMap<String, String> outAnnotations = new LinkedHashMap<>();

Expand Down