aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java
diff options
context:
space:
mode:
authorGravatar Ulf Adams <ulfjack@google.com>2015-11-02 08:45:26 +0000
committerGravatar Florian Weikert <fwe@google.com>2015-11-02 16:56:28 +0000
commit39b18cae5102e7a10272ef2752461c2287d4493d (patch)
treef45ce24724854ff589f3ddd5c9ff35f1c57a435f /src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java
parent1aa49da5e5f9e98ce3a2a0b96f387f2990a2363f (diff)
Remove BlazeRuntime.reporter; use a BlazeModule to attach event handlers.
This only affects tests that previously set a Reporter on the BlazeRuntime; the production code is already using the per-command Reporter in all cases. -- MOS_MIGRATED_REVID=106820846
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java b/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java
index 100a075d92..2235eb80cf 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandDispatcher.java
@@ -206,7 +206,7 @@ public class BlazeCommandDispatcher {
* client process, or throws {@link ShutdownBlazeServerException} to
* indicate that a command wants to shutdown the Blaze server.
*/
- public int exec(List<String> args, OutErr outErr, long firstContactTime)
+ int exec(List<String> args, OutErr outErr, long firstContactTime)
throws ShutdownBlazeServerException {
// Record the start time for the profiler and the timestamp granularity monitor. Do not put
// anything before this!