aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog/_posts/2015-06-25-ErrorProne.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/blog/_posts/2015-06-25-ErrorProne.md')
-rw-r--r--site/blog/_posts/2015-06-25-ErrorProne.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/site/blog/_posts/2015-06-25-ErrorProne.md b/site/blog/_posts/2015-06-25-ErrorProne.md
index d79d87accb..d61a5502fa 100644
--- a/site/blog/_posts/2015-06-25-ErrorProne.md
+++ b/site/blog/_posts/2015-06-25-ErrorProne.md
@@ -3,15 +3,15 @@ layout: posts
title: Checking your Java errors with Error Prone.
---
-We recently open-sourced our support for [Error Prone](http://errorprone.info).
-[Error Prone](http://errorprone.info) checks for common mistakes in Java code
+We recently open-sourced our support for [Error Prone](https://errorprone.info).
+[Error Prone](https://errorprone.info) checks for common mistakes in Java code
that will not be caught by the compiler.
-We turned [Error Prone](http://errorprone.info) on by default but you can easily
+We turned [Error Prone](https://errorprone.info) on by default but you can easily
turn it off by using the Javac option `-XepDisableAllChecks`. To do so, simply
specify `--javacopt='XepDisableAllChecks` to the list of Bazel's options. You
can also tune the checks error-prone will perform by using the [`-Xep:`
-flags](http://errorprone.info/docs/flags).
+flags](https://errorprone.info/docs/flags).
-See the [documentation of Error Prone](http://errorprone.info/docs/installation) for more
+See the [documentation of Error Prone](https://errorprone.info/docs/installation) for more
on Error Prone.