- Timestamp:
- May 2, 2011, 11:55:13 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 10 10 .settings 11 11 *.log 12 dtd
-
- Property svn:ignore
-
trunk/src/groovy/dbnp/query/Search.groovy
r1717 r1798 795 795 * @return A list with only those results for which the id is in the selectedIds 796 796 */ 797 public List filterResults( List selected Ids ) {798 if( !selected Ids || !results )797 public List filterResults( List selectedTokens ) { 798 if( !selectedTokens || !results ) 799 799 return results 800 800 801 801 return results.findAll { 802 selected Ids.contains( it.id)802 selectedTokens.contains( it.giveUUID() ) 803 803 } 804 804 }
Note: See TracChangeset
for help on using the changeset viewer.