You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by di...@apache.org on 2009/11/18 21:24:08 UTC

svn commit: r881921 - /incubator/lucene.net/trunk/C#/src/Lucene.Net/Util/AttributeSource.cs

Author: digy
Date: Wed Nov 18 20:24:08 2009
New Revision: 881921

URL: http://svn.apache.org/viewvc?rev=881921&view=rev
Log:
LUCENENET-275 TestTokenStreamBWComp issue with 2.9.1
new patch committed

Modified:
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Util/AttributeSource.cs

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Util/AttributeSource.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Util/AttributeSource.cs?rev=881921&r1=881920&r2=881921&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Util/AttributeSource.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Util/AttributeSource.cs Wed Nov 18 20:24:08 2009
@@ -90,7 +90,8 @@
 						{
 							try
 							{
-								attClassImplMap.Add(attClass, clazz = System.Type.GetType(attClass.FullName + "Impl"));
+                                string name = attClass.FullName + "Impl," + attClass.Assembly.FullName;
+								attClassImplMap.Add(attClass, clazz = System.Type.GetType(name, true));
 							}
 							catch (System.Exception e)
 							{