aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog/_posts/2015-06-25-ErrorProne.md
diff options
context:
space:
mode:
authorGravatar dzc <dzc@google.com>2017-05-31 20:37:50 +0200
committerGravatar László Csomor <laszlocsomor@google.com>2017-06-01 14:07:52 +0200
commit22b85a2a3c79c6f3aef1e0a61e485bb135be4551 (patch)
tree8235e8237b171ced2fa9f39f054f9a7d808c0771 /site/blog/_posts/2015-06-25-ErrorProne.md
parent40d64293b57f0d62bb15599c730f38484b91d3f0 (diff)
Restructure site/ directory into docs/ which only contains Bazel documentation.
The new docs/ directory in the bazel source tree will only contain the Bazel docs site, which is hosted at docs.bazel.build. This change deletes the marketing site and blog, which have been migrated to the bazel-website and bazel-blog GitHub repositories respectively. This change also updates the serve-docs.sh and ci/build.sh under scripts/ in preparation for publishing the docs site. Note that to help make reviews more manageable, this change is limited to moving files to their new locations. Here are the follow-up changes: * Update all links in docs to remove versions/master in paths and to add correct bazel.build subdomain when linking to pages on the marketing site or the blog. * Set up versioned directories on GCS bucket and add tooling for versioning docs This change is also coordinated with https://bazel-review.googlesource.com/c/11568/ to have the PublishSite job publish to docs.bazel.build rather than www.bazel.build. Issue #2397 RELNOTES: None PiperOrigin-RevId: 157612651
Diffstat (limited to 'site/blog/_posts/2015-06-25-ErrorProne.md')
-rw-r--r--site/blog/_posts/2015-06-25-ErrorProne.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/site/blog/_posts/2015-06-25-ErrorProne.md b/site/blog/_posts/2015-06-25-ErrorProne.md
deleted file mode 100644
index dc4803bd93..0000000000
--- a/site/blog/_posts/2015-06-25-ErrorProne.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-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
-that will not be caught by the compiler.
-
-We turned [Error Prone](http://errorprone.info) on by default but you can
-easily turn it off by using the Javac option `--extra_checks:off`. To do so,
-simply specify `--javacopt='-extra_checks:off'` 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).
-
-See the [documentation of Error Prone](http://errorprone.info/docs/installation) for more
-on Error Prone.