aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2018-03-12 18:37:14 -0700
committerEric Anderson <ejona@google.com>2018-03-20 17:24:06 -0700
commit524117247530b847157b72d58a25372b87100e2a (patch)
tree0c455dd318095388b150f255277aa0df330c8047 /build.gradle
parent7b111d2d001458f7cd17a03f10962afc77ebf5bc (diff)
downloadgrpc-grpc-java-524117247530b847157b72d58a25372b87100e2a.tar.gz
build.gradle: Filter -Xep instead of just -Xep:
-XepFilterPaths should be included in the filtering, otherwise -PerrorProne=false will fail. I broke this in 1fb72ef6
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index f34da55d9..22cefcf1e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -42,7 +42,7 @@ subprojects {
allprojects {
afterEvaluate { project ->
project.tasks.withType(JavaCompile) {
- options.compilerArgs.removeAll { it.startsWith("-Xep:") }
+ options.compilerArgs.removeAll { it.startsWith("-Xep") }
}
}
}