aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java b/src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java
index 4ced227cc8..408b717125 100644
--- a/src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java
+++ b/src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java
@@ -34,7 +34,7 @@ public interface ActionMetadata {
* message should be reported.
*/
@Nullable
- public String getProgressMessage();
+ String getProgressMessage();
/**
* Returns the owner of this executable if this executable can supply verbose information. This is
@@ -44,7 +44,7 @@ public interface ActionMetadata {
* <p>If this executable does not supply verbose information, this function may throw an
* IllegalStateException.
*/
- public ActionOwner getOwner();
+ ActionOwner getOwner();
/**
* Returns a mnemonic (string constant) for this kind of action; written into
@@ -71,7 +71,7 @@ public interface ActionMetadata {
* executor parameter of the top-level call to
* Builder.buildArtifacts().
*/
- public String describeStrategy(Executor executor);
+ String describeStrategy(Executor executor);
/**
* Returns true iff the getInputs set is known to be complete.
@@ -124,7 +124,7 @@ public interface ActionMetadata {
* orphaned (not consumed by any downstream {@link Action}s and potentially
* discarded during the build process.
*/
- public ImmutableSet<Artifact> getMandatoryOutputs();
+ ImmutableSet<Artifact> getMandatoryOutputs();
/**
* Returns the "primary" input of this action, if applicable.