Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<li {% if include.active == 'docs' %} class="active" {% endif %}>
<a href="{{ site.baseurl }}/docs/installation">Docs</a>
</li>
<li><a href="http://github.com/google/error-prone">GitHub</a></li>
<li><a href="https://github.com/google/error-prone">GitHub</a></li>
</ul>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/flags.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ We no longer support the old-style Error Prone disabling flags that used the

There are a couple of flags for configuration of patching in suggested fixes,
e.g. `-XepPatchChecks:VALUE` and `-XepPatchLocation:VALUE`. See the
[patching docs](http://errorprone.info/docs/patching) for more info.
[patching docs](https://errorprone.info/docs/patching) for more info.

### Pass Additional Info to BugCheckers

Expand Down
10 changes: 5 additions & 5 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ can still be used to build Java 8 code by setting the appropriate `-source` /
`-target` / `-bootclasspath` flags.)

Please join our
[mailing list](http://groups.google.com/group/error-prone-announce) to know when
[mailing list](https://groups.google.com/group/error-prone-announce) to know when
a new version is released!

## Bazel

Error Prone works out of the box with [Bazel](http://bazel.io).
Error Prone works out of the box with [Bazel](https://bazel.io).

```
java_library(
Expand All @@ -29,7 +29,7 @@ ERROR: example/myproject/BUILD:29:1: Java compilation in rule '//example/myproje
examples/maven/error_prone_should_flag/src/main/java/Main.java:20: error: [DeadException] Exception created but not thrown
new Exception();
^
(see http://errorprone.info/bugpattern/DeadException)
(see https://errorprone.info/bugpattern/DeadException)
Did you mean 'throw new Exception();'?
1 error
BazelJavaBuilder threw exception: java compilation returned status ERROR
Expand Down Expand Up @@ -111,7 +111,7 @@ file:
--add-opens jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED
```

See the [flags documentation](http://errorprone.info/docs/flags#maven) for
See the [flags documentation](https://errorprone.info/docs/flags#maven) for
details on how to customize the plugin's behavior.

## Gradle
Expand Down Expand Up @@ -214,7 +214,7 @@ javac \
ShortSet.java:8: error: [CollectionIncompatibleType] Argument 'i - 1' should not be passed to this method; its type int is not compatible with its collection's type argument Short
s.remove(i - 1);
^
(see http://errorprone.info/bugpattern/CollectionIncompatibleType)
(see https://errorprone.info/bugpattern/CollectionIncompatibleType)
1 error
```

Expand Down
2 changes: 1 addition & 1 deletion docs/patching.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In addition to reporting errors as part of your regular compile phase, Error Pro
error: [DeadException] Exception created but not thrown
new RuntimeException();
^
(see http://errorprone.info/bugpattern/DeadException)
(see https://errorprone.info/bugpattern/DeadException)
Did you mean 'throw new RuntimeException();'?
1 error
```
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ dependencies {

Plugin checkers can accept additional configuration flags by defining
a single-argument constructor taking an `ErrorProneFlags` object (see
the [flags docs](http://errorprone.info/docs/flags)). However, note
the [flags docs](https://errorprone.info/docs/flags)). However, note
that plugin checkers must also define a zero-argument constructor, as
they are loaded by a `ServiceLoader`. The actual checker instance
used by Error Prone will be constructed using the `ErrorProneFlags`
Expand Down
2 changes: 1 addition & 1 deletion docs/refaster.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Use the Error Prone javac JAR and the Error Prone Refaster JAR to compile the
Refaster template, using JDK 9 or newer:

```shell
wget http://repo1.maven.org/maven2/com/google/errorprone/error_prone_refaster/2.3.1/error_prone_refaster-2.3.1.jar
wget https://repo1.maven.org/maven2/com/google/errorprone/error_prone_refaster/2.3.1/error_prone_refaster-2.3.1.jar

javac \
-cp error_prone_refaster-2.3.1.jar \
Expand Down
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ShortSet.java:6: error: [CollectionIncompatibleType] Argument 'i - 1' should not
its type int is not compatible with its collection's type argument Short
s.remove(i - 1);
^
(see http://errorprone.info/bugpattern/CollectionIncompatibleType)
(see https://errorprone.info/bugpattern/CollectionIncompatibleType)
1 error
```

Expand Down