aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2016-09-15 14:08:08 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-09-15 15:43:37 +0000
commite423fdb81d601886299f53081238bbe2874d26ce (patch)
treeb8279314ab0a42751141314af747d42d08bd01d1 /src/main/java/com/google/devtools/build/lib/actions
parent0bcc98437eb549e49044f1109784a06d6b7df809 (diff)
Remove some more occurences of deprecated getExecRoot() calls
-- MOS_MIGRATED_REVID=133257532
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/actions')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/BlazeExecutor.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/actions/BlazeExecutor.java b/src/main/java/com/google/devtools/build/lib/actions/BlazeExecutor.java
index 2513cecdf4..1c7c4be539 100644
--- a/src/main/java/com/google/devtools/build/lib/actions/BlazeExecutor.java
+++ b/src/main/java/com/google/devtools/build/lib/actions/BlazeExecutor.java
@@ -46,7 +46,6 @@ import java.util.concurrent.atomic.AtomicBoolean;
@ThreadSafe
public final class BlazeExecutor implements Executor {
- private final Path outputPath;
private final boolean verboseFailures;
private final boolean showSubcommands;
private final Path execRoot;
@@ -74,7 +73,6 @@ public final class BlazeExecutor implements Executor {
* request, and shutdown() when you're done with this executor.
*/
public BlazeExecutor(Path execRoot,
- Path outputPath,
Reporter reporter,
EventBus eventBus,
Clock clock,
@@ -85,7 +83,6 @@ public final class BlazeExecutor implements Executor {
Map<String, SpawnActionContext> spawnActionContextMap,
Iterable<ActionContextProvider> contextProviders)
throws ExecutorInitException {
- this.outputPath = outputPath;
this.verboseFailures = verboseFailures;
this.showSubcommands = showSubcommands;
this.execRoot = execRoot;
@@ -222,8 +219,4 @@ public final class BlazeExecutor implements Executor {
public OptionsClassProvider getOptions() {
return options;
}
-
- public Path getOutputPath() {
- return outputPath;
- }
}