fix Bug TDI-18475: tXMLMap can not manage transformationof two independence xml file.

git-svn-id: http://talendforge.org/svn/tos/trunk@75362 f6f1c999-d317-4740-80b0-e6d1abc6f99e
This commit is contained in:
wwang
2011-12-27 06:06:06 +00:00
parent 0405fb26de
commit f033309e64
2 changed files with 23 additions and 21 deletions

View File

@@ -19,7 +19,7 @@ public class DocumentLookupCache {
cache = new UniqueLookupCache();
} else if("FIRST_MATCH".equals(matchingMode)) {
cache = new FirstLookupCache();
} else if("ALL_MATCHES".equals(matchingMode)) {
} else if("ALL_MATCHES".equals(matchingMode) || "ALL_ROWS".equals(matchingMode)) {
cache = new AllMatchLookupCache();
}
}