mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Compilation fixes on clashes with tenant-related work
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6725 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -304,7 +304,6 @@ public class ADMLuceneSearcherImpl extends AbstractLuceneBase implements LuceneS
|
||||
}
|
||||
|
||||
Path[] paths = searchParameters.getAttributePaths().toArray(new Path[0]);
|
||||
<<<<<<< .working
|
||||
return new LuceneResultSet(
|
||||
hits,
|
||||
searcher,
|
||||
@@ -312,10 +311,6 @@ public class ADMLuceneSearcherImpl extends AbstractLuceneBase implements LuceneS
|
||||
tenantService,
|
||||
paths,
|
||||
searchParameters);
|
||||
=======
|
||||
return new LuceneResultSet(hits, searcher, nodeService, paths, searchParameters);
|
||||
>>>>>>> .merge-right.r6367
|
||||
|
||||
}
|
||||
catch (ParseException e)
|
||||
{
|
||||
@@ -348,12 +343,13 @@ public class ADMLuceneSearcherImpl extends AbstractLuceneBase implements LuceneS
|
||||
return new EmptyResultSet();
|
||||
}
|
||||
Hits hits = searcher.search(query);
|
||||
<<<<<<< .working
|
||||
return new LuceneResultSet(hits, searcher, nodeService, tenantService, searchParameters.getAttributePaths().toArray(
|
||||
new Path[0]), searchParameters);
|
||||
=======
|
||||
return new LuceneResultSet(hits, searcher, nodeService, searchParameters.getAttributePaths().toArray(new Path[0]), searchParameters);
|
||||
>>>>>>> .merge-right.r6367
|
||||
return new LuceneResultSet(
|
||||
hits,
|
||||
searcher,
|
||||
nodeService,
|
||||
tenantService,
|
||||
searchParameters.getAttributePaths().toArray(new Path[0]),
|
||||
searchParameters);
|
||||
}
|
||||
catch (SAXPathException e)
|
||||
{
|
||||
@@ -573,15 +569,10 @@ public class ADMLuceneSearcherImpl extends AbstractLuceneBase implements LuceneS
|
||||
boolean followAllParentLinks, String language) throws InvalidNodeRefException, XPathException
|
||||
{
|
||||
NodeSearcher nodeSearcher = new NodeSearcher(nodeService, dictionaryService, this);
|
||||
<<<<<<< .working
|
||||
|
||||
contextNodeRef = tenantService.getName(contextNodeRef);
|
||||
|
||||
return nodeSearcher.selectNodes(contextNodeRef, xpath, parameters, namespacePrefixResolver,
|
||||
followAllParentLinks, language);
|
||||
=======
|
||||
return nodeSearcher.selectNodes(contextNodeRef, xpath, parameters, namespacePrefixResolver, followAllParentLinks, language);
|
||||
>>>>>>> .merge-right.r6367
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user