You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2008/11/27 14:03:36 UTC

svn commit: r721175 - /maven/mercury/trunk/mercury-repo/mercury-repo-api/src/main/java/org/apache/maven/mercury/repository/api/AbstractRepository.java

Author: brett
Date: Thu Nov 27 05:03:36 2008
New Revision: 721175

URL: http://svn.apache.org/viewvc?rev=721175&view=rev
Log:
correct API typo

Modified:
    maven/mercury/trunk/mercury-repo/mercury-repo-api/src/main/java/org/apache/maven/mercury/repository/api/AbstractRepository.java

Modified: maven/mercury/trunk/mercury-repo/mercury-repo-api/src/main/java/org/apache/maven/mercury/repository/api/AbstractRepository.java
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-repo/mercury-repo-api/src/main/java/org/apache/maven/mercury/repository/api/AbstractRepository.java?rev=721175&r1=721174&r2=721175&view=diff
==============================================================================
--- maven/mercury/trunk/mercury-repo/mercury-repo-api/src/main/java/org/apache/maven/mercury/repository/api/AbstractRepository.java (original)
+++ maven/mercury/trunk/mercury-repo/mercury-repo-api/src/main/java/org/apache/maven/mercury/repository/api/AbstractRepository.java Thu Nov 27 05:03:36 2008
@@ -158,7 +158,7 @@
     writerRegistry.put(  type, writerFactory );
   }
   //---------------------------------------------------------------------------
-  public static void upregisterReader( String type )
+  public static void unregisterReader( String type )
   throws IllegalArgumentException
   {
     if( type == null || type.length() < 1 )
@@ -167,7 +167,7 @@
     readerRegistry.remove( type );
   }
   //---------------------------------------------------------------------------
-  public static void upregisterWriter( String type )
+  public static void unregisterWriter( String type )
   throws IllegalArgumentException
   {
     if( type == null || type.length() < 1 )