You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2015/09/16 18:15:23 UTC

svn commit: r1703431 - in /manifoldcf/trunk: CHANGES.txt connectors/documentum/implementation/src/main/java/org/apache/manifoldcf/crawler/common/DCTM/DocumentumImpl.java

Author: kwright
Date: Wed Sep 16 16:15:23 2015
New Revision: 1703431

URL: http://svn.apache.org/r1703431
Log:
Fix for CONNECTORS-1241. Committed on behalf of Bipul Podder.

Modified:
    manifoldcf/trunk/CHANGES.txt
    manifoldcf/trunk/connectors/documentum/implementation/src/main/java/org/apache/manifoldcf/crawler/common/DCTM/DocumentumImpl.java

Modified: manifoldcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1703431&r1=1703430&r2=1703431&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Wed Sep 16 16:15:23 2015
@@ -3,6 +3,10 @@ $Id$
 
 ======================= 2.3-dev =====================
 
+CONNECTORS-1241: Documentum connector not handling subtypes
+properly.
+(Bipul Podder)
+
 CONNECTORS-1231: Upgrade to JUnit 4.12.
 (Shinichiro Abe)
 

Modified: manifoldcf/trunk/connectors/documentum/implementation/src/main/java/org/apache/manifoldcf/crawler/common/DCTM/DocumentumImpl.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/documentum/implementation/src/main/java/org/apache/manifoldcf/crawler/common/DCTM/DocumentumImpl.java?rev=1703431&r1=1703430&r2=1703431&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/documentum/implementation/src/main/java/org/apache/manifoldcf/crawler/common/DCTM/DocumentumImpl.java (original)
+++ manifoldcf/trunk/connectors/documentum/implementation/src/main/java/org/apache/manifoldcf/crawler/common/DCTM/DocumentumImpl.java Wed Sep 16 16:15:23 2015
@@ -408,7 +408,7 @@ public class DocumentumImpl extends Unic
         String matchType = matchTypeSet[i++];
         if (matchType.equalsIgnoreCase(theType))
           return true;
-        if (typeDescription.isSubTypeOf(theType))
+        if (typeDescription.isSubTypeOf(matchType))
           return true;
       }
       return false;