aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2015-11-02 10:31:49 +0000
committerGravatar Florian Weikert <fwe@google.com>2015-11-02 16:56:32 +0000
commitb1b9720b8e01d5eaf9c164592a4fcdabda53d473 (patch)
treec43e321ae45adff7f0f31277d0a1fe7dc19bdb74 /src/main/java/com/google/devtools/build/lib
parent39b18cae5102e7a10272ef2752461c2287d4493d (diff)
Interface methods are public anyway, remove superfluous modifiers.
-- MOS_MIGRATED_REVID=106826084
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/ActionMetadata.java8
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/actions/SpawnAction.java2
2 files changed, 5 insertions, 5 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.
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/actions/SpawnAction.java b/src/main/java/com/google/devtools/build/lib/analysis/actions/SpawnAction.java
index 6cb5d4b758..10c5a8a9e4 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/actions/SpawnAction.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/actions/SpawnAction.java
@@ -839,7 +839,7 @@ public class SpawnAction extends AbstractAction {
}
/**
- * Appends the argument both to the ouputs and to the list of command-line
+ * Appends the argument both to the outputs and to the list of command-line
* arguments.
*/
public Builder addOutputArgument(Artifact argument) {