aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2018-05-04 16:06:27 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-05-04 16:07:51 -0700
commit24e1409e50eb261df3c3be14472682a9cdacc741 (patch)
tree176507289a0fac14d7402428bafbe186a32ab5b7 /site/blog
parent4fb4e03a1676db881407c858e6c7576263f1b063 (diff)
Automatic code cleanup.
PiperOrigin-RevId: 195486836
Diffstat (limited to 'site/blog')
-rw-r--r--site/blog/_posts/2015-06-25-ErrorProne.md10
-rw-r--r--site/blog/_posts/2015-07-08-Java-Configuration.md2
2 files changed, 6 insertions, 6 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.
diff --git a/site/blog/_posts/2015-07-08-Java-Configuration.md b/site/blog/_posts/2015-07-08-Java-Configuration.md
index 2d0a3c70c5..623b424ae7 100644
--- a/site/blog/_posts/2015-07-08-Java-Configuration.md
+++ b/site/blog/_posts/2015-07-08-Java-Configuration.md
@@ -25,7 +25,7 @@ java_toolchain(
source_version = "8",
target_version = "8",
misc = [
- "-Xep:CollectionIncompatibleType:ERROR", # http://errorprone.info/bugpattern/CollectionIncompatibleType
+ "-Xep:CollectionIncompatibleType:ERROR", # https://errorprone.info/bugpattern/CollectionIncompatibleType
],
)
```