You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2010/08/25 13:03:00 UTC

svn commit: r989010 - /lucene/dev/trunk/lucene/src/test/org/apache/lucene/store/MockDirectoryWrapper.java

Author: mikemccand
Date: Wed Aug 25 11:03:00 2010
New Revision: 989010

URL: http://svn.apache.org/viewvc?rev=989010&view=rev
Log:
fix msg in exc

Modified:
    lucene/dev/trunk/lucene/src/test/org/apache/lucene/store/MockDirectoryWrapper.java

Modified: lucene/dev/trunk/lucene/src/test/org/apache/lucene/store/MockDirectoryWrapper.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/test/org/apache/lucene/store/MockDirectoryWrapper.java?rev=989010&r1=989009&r2=989010&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/test/org/apache/lucene/store/MockDirectoryWrapper.java (original)
+++ lucene/dev/trunk/lucene/src/test/org/apache/lucene/store/MockDirectoryWrapper.java Wed Aug 25 11:03:00 2010
@@ -340,7 +340,7 @@ public class MockDirectoryWrapper extend
         cause = stacktraces.next();
       // RuntimeException instead of IOException because
       // super() does not throw IOException currently:
-      throw new RuntimeException("MockRAMDirectory: cannot close: there are still open files: " + openFiles, cause);
+      throw new RuntimeException("MockDirectoryWrapper: cannot close: there are still open files: " + openFiles, cause);
     }
     open = false;
     delegate.close();