Skip to content

Commit

Permalink
Make getActions() public.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 241094469
  • Loading branch information
Googler authored and copybara-github committed Mar 30, 2019
1 parent 3cb0c39 commit d3a9feb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected ActionLookupValue(@Nullable BigInteger nonceVersion) {
this.nonceVersion = nonceVersion;
}
/** Returns a list of actions registered by this {@link SkyValue}. */
protected abstract ImmutableList<ActionAnalysisMetadata> getActions();
public abstract ImmutableList<ActionAnalysisMetadata> getActions();

/**
* Returns a map where keys are artifacts generated by this {@link SkyValue}, and values are
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public BasicActionLookupValue(
}

@Override
protected ImmutableList<ActionAnalysisMetadata> getActions() {
public ImmutableList<ActionAnalysisMetadata> getActions() {
return actions;
}

Expand Down

0 comments on commit d3a9feb

Please sign in to comment.