This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch 1.6.x in repository https://gitbox.apache.org/repos/asf/maven-resolver.git
The following commit(s) were added to refs/heads/1.6.x by this push: new 5a46656 [MRESOLVER-166] mark field final, as others 5a46656 is described below commit 5a46656e93c2cfc869ee6e41af47a96c9b081c4e Author: Hervé Boutemy <hbout...@apache.org> AuthorDate: Sun Mar 14 21:44:19 2021 +0100 [MRESOLVER-166] mark field final, as others --- .../src/main/java/org/eclipse/aether/repository/RemoteRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-resolver-api/src/main/java/org/eclipse/aether/repository/RemoteRepository.java b/maven-resolver-api/src/main/java/org/eclipse/aether/repository/RemoteRepository.java index 73403c5..04d35f9 100644 --- a/maven-resolver-api/src/main/java/org/eclipse/aether/repository/RemoteRepository.java +++ b/maven-resolver-api/src/main/java/org/eclipse/aether/repository/RemoteRepository.java @@ -61,7 +61,7 @@ public final class RemoteRepository private final boolean repositoryManager; - private boolean blocked; + private final boolean blocked; RemoteRepository( Builder builder ) {