From 7ef77516843ed23d72825239bdbb5e41ee6bc313 Mon Sep 17 00:00:00 2001 From: Benjamin Bentmann Date: Tue, 1 Sep 2009 13:49:27 +0000 Subject: [PATCH] o Clarified API git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@810053 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/maven/repository/RepositorySystem.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java b/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java index 0be35168c4..5a507cc044 100644 --- a/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java +++ b/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java @@ -78,12 +78,12 @@ public interface RepositorySystem throws InvalidRepositoryException; ArtifactRepository createArtifactRepository( String id, String url, ArtifactRepositoryLayout repositoryLayout, ArtifactRepositoryPolicy snapshots, ArtifactRepositoryPolicy releases ); - + /** - * Calculates the effective repositories for the given input repositories. This process will essentially remove - * duplicate repositories by merging them into one equivalent repository. It is worth to point out that merging does - * not simply choose one of the input repositories and discards the others but actually combines their possibly - * different policies. + * Calculates the effective repositories for the given input repositories which are assumed to be already mirrored + * (if applicable). This process will essentially remove duplicate repositories by merging them into one equivalent + * repository. It is worth to point out that merging does not simply choose one of the input repositories and + * discards the others but actually combines their possibly different policies. * * @param repositories The original repositories, may be {@code null}. * @return The effective repositories or {@code null} if the input was {@code null}.