aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2016-03-07 19:32:24 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-03-08 03:44:53 +0000
commite92bfe5468bb514a3be7481b60f51081d198c66d (patch)
treecdb1de6d56bb7e933253bf10b7fa67dcabc1c4b0 /src/main/java/com/google/devtools/build/lib/runtime
parentadc706fd0295cef7cd1461daca141f012910eca3 (diff)
Global cleanup change.
-- MOS_MIGRATED_REVID=116569594
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/InvocationPolicyEnforcer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/InvocationPolicyEnforcer.java b/src/main/java/com/google/devtools/build/lib/runtime/InvocationPolicyEnforcer.java
index a87575d728..38d48cc185 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/InvocationPolicyEnforcer.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/InvocationPolicyEnforcer.java
@@ -92,7 +92,7 @@ public final class InvocationPolicyEnforcer {
try {
// First try decoding the policy as a base64 encoded binary proto.
return InvocationPolicy.parseFrom(
- BaseEncoding.base64().decode(CharMatcher.WHITESPACE.removeFrom(policy)));
+ BaseEncoding.base64().decode(CharMatcher.whitespace().removeFrom(policy)));
} catch (IllegalArgumentException e) {
// If the flag value can't be decoded from base64, try decoding the policy as a text
// formatted proto.