Uh, sorry, I thought you typed 's' instead of 'a'. (next key of 'a')
Now I'm aware of nsme stands for NoSuchMethodException...

(10/05/31 0:37), Uwe Schindler wrote:
What was the reason for the changes in VirtualMethod?

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de


-----Original Message-----
From: k...@apache.org [mailto:k...@apache.org]
Sent: Sunday, May 30, 2010 5:02 PM
To: comm...@lucene.apache.org
Subject: svn commit: r949525 - in
/lucene/dev/trunk/lucene/src/java/org/apache/lucene:
analysis/CharTokenizer.java util/VirtualMethod.java

Author: koji
Date: Sun May 30 15:02:06 2010
New Revision: 949525

URL: http://svn.apache.org/viewvc?rev=949525&view=rev
Log:
fix typo

Modified:

lucene/dev/trunk/lucene/src/java/org/apache/lucene/analysis/CharTokeniz
er.java

lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/VirtualMethod.ja
va

Modified:
lucene/dev/trunk/lucene/src/java/org/apache/lucene/analysis/CharTokeniz
er.java
URL:
http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apach
e/lucene/analysis/CharTokenizer.java?rev=949525&r1=949524&r2=949525&v
iew=diff
==========================================================
====================
---
lucene/dev/trunk/lucene/src/java/org/apache/lucene/analysis/CharTokeniz
er.java (original)
+++
lucene/dev/trunk/lucene/src/java/org/apache/lucene/analysis/CharTokeniz
er.java Sun May 30 15:02:06 2010
@@ -237,7 +237,7 @@ public abstract class CharTokenizer exte
     *</p>
     */
    protected boolean isTokenChar(int c) {
-    throw new UnsupportedOperationException("since LUCENE_3_1
subclasses of CharTokenizer must implement isTokenChar(int)");
+    throw new UnsupportedOperationException("since LUCENE_31
subclasses of CharTokenizer must implement isTokenChar(int)");
    }

    /**

Modified:
lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/VirtualMethod.ja
va
URL:
http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apach
e/lucene/util/VirtualMethod.java?rev=949525&r1=949524&r2=949525&view
=diff
==========================================================
====================
---
lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/VirtualMethod.ja
va (original)
+++
lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/VirtualMethod.ja
va Sun May 30 15:02:06 2010
@@ -83,8 +83,8 @@ public final class VirtualMethod<C>  {
            "VirtualMethod instances must be singletons and therefore " +
            "assigned to static final members in the same class, they use as
baseClass ctor param."
          );
-    } catch (NoSuchMethodException nsme) {
-      throw new IllegalArgumentException(baseClass.getName() + " has no
such method: "+nsme.getMessage());
+    } catch (NoSuchMethodException name) {
+      throw new IllegalArgumentException(baseClass.getName() + " has no
such method: "+name.getMessage());
      }
    }




---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org




--
http://www.rondhuit.com/en/


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to