You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2021/03/15 20:09:40 UTC

[maven-resolver] branch 1.6.x updated (5a46656 -> b36f755)

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a change to branch 1.6.x
in repository https://gitbox.apache.org/repos/asf/maven-resolver.git.


 discard 5a46656  [MRESOLVER-166] mark field final, as others
 discard 588ba86  Use 'block' term for definitions
     new b36f755  [MRESOLVER-166] mark field final, as others

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5a46656)
            \
             N -- N -- N   refs/heads/1.6.x (b36f755)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../aether/util/repository/DefaultMirrorSelector.java      | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)


[maven-resolver] 01/01: [MRESOLVER-166] mark field final, as others

Posted by hb...@apache.org.
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

commit b36f7558be305f28e5bc32e0089dc24075647d8b
Author: Hervé Boutemy <hb...@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 )
     {