You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/03/15 08:04:39 UTC

[maven-resolver] 08/19: Make members private, there is no more Ex instance to inherit

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

michaelo pushed a commit to branch MRESOLVER-241
in repository https://gitbox.apache.org/repos/asf/maven-resolver.git

commit 8241e83d8537f0525429dcfaf852df591f76d983
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Fri Mar 11 10:27:47 2022 +0100

    Make members private, there is no more Ex instance to inherit
---
 .../eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory.java b/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory.java
index 869b718..7e9c4eb 100644
--- a/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory.java
+++ b/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory.java
@@ -141,11 +141,11 @@ public final class Maven2RepositoryLayoutFactory
             implements RepositoryLayout
     {
 
-        protected final List<ChecksumAlgorithmFactory> checksumAlgorithms;
+        private final List<ChecksumAlgorithmFactory> checksumAlgorithms;
 
-        protected final ArtifactChecksumFilter artifactChecksumFilter;
+        private final ArtifactChecksumFilter artifactChecksumFilter;
 
-        protected Maven2RepositoryLayout( List<ChecksumAlgorithmFactory> checksumAlgorithms,
+        private Maven2RepositoryLayout( List<ChecksumAlgorithmFactory> checksumAlgorithms,
                                           ArtifactChecksumFilter artifactChecksumFilter )
         {
             this.checksumAlgorithms = Collections.unmodifiableList( checksumAlgorithms );