You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2010/09/06 09:56:59 UTC

svn commit: r992964 - /directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/filtering/CursorList.java

Author: elecharny
Date: Mon Sep  6 07:56:59 2010
New Revision: 992964

URL: http://svn.apache.org/viewvc?rev=992964&view=rev
Log:
Fixed a compilation error

Modified:
    directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/filtering/CursorList.java

Modified: directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/filtering/CursorList.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/filtering/CursorList.java?rev=992964&r1=992963&r2=992964&view=diff
==============================================================================
--- directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/filtering/CursorList.java (original)
+++ directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/filtering/CursorList.java Mon Sep  6 07:56:59 2010
@@ -147,7 +147,7 @@ public class CursorList implements Entry
     public void before( ClonedServerEntry element ) throws Exception
     {
         // checkNotClosed( "before()" );
-        throw new UnsupportedOperationException( I18n.err( I18n.ERR_02008 ) );
+        throw new UnsupportedOperationException( I18n.err( I18n.ERR_02008_LIST_MAY_BE_SORTED ) );
     }
 
 
@@ -156,7 +156,7 @@ public class CursorList implements Entry
      */
     public void after( ClonedServerEntry element ) throws Exception
     {
-        throw new UnsupportedOperationException( I18n.err( I18n.ERR_02008 ) );
+        throw new UnsupportedOperationException( I18n.err( I18n.ERR_02008_LIST_MAY_BE_SORTED ) );
     }