Skip to content

Commit

Permalink
Update ActionMetadata -> ActionExecutionMetadata references.
Browse files Browse the repository at this point in the history
--
MOS_MIGRATED_REVID=134537085
  • Loading branch information
gregestren authored and meteorcloudy committed Sep 28, 2016
1 parent 2bc0939 commit 49e0ca2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ public String toString() {

/**
* See the javadoc for {@link com.google.devtools.build.lib.actions.Action} and
* {@link com.google.devtools.build.lib.actions.ActionMetadata#getKey()} for the contract for
* {@link #computeKey()}.
* {@link com.google.devtools.build.lib.actions.ActionExecutionMetadata#getKey()} for the contract
* for {@link #computeKey()}.
*/
protected abstract String computeKey();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ void execute(ActionExecutionContext actionExecutionContext)

/**
* Method used to find inputs before execution for an action that
* {@link ActionMetadata#discoversInputs}. Returns null if action's inputs will be discovered
* during execution proper.
* {@link ActionExecutionMetadata#discoversInputs}. Returns null if action's inputs will be
* discovered during execution proper.
*/
@Nullable
Iterable<Artifact> discoverInputs(ActionExecutionContext actionExecutionContext)
Expand Down Expand Up @@ -175,7 +175,7 @@ Iterable<Artifact> resolveInputsFromCache(
/**
* Informs the action that its inputs are {@code inputs}, and that its inputs are now known. Can
* only be called for actions that discover inputs. After this method is called,
* {@link ActionMetadata#inputsKnown} should return true.
* {@link ActionExecutionMetadata#inputsKnown} should return true.
*/
void updateInputs(Iterable<Artifact> inputs);

Expand Down

0 comments on commit 49e0ca2

Please sign in to comment.