Make Compiler_Highlight_Spans private The DocVector parameter isn't public.
Project: http://git-wip-us.apache.org/repos/asf/lucy/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/0e31a39d Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/0e31a39d Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/0e31a39d Branch: refs/heads/master Commit: 0e31a39d017060da75325ea05f8760545d3b69f9 Parents: f50a2fd Author: Nick Wellnhofer <[email protected]> Authored: Sun Aug 23 15:48:56 2015 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Tue Aug 25 12:45:53 2015 +0200 ---------------------------------------------------------------------- core/Lucy/Search/Compiler.cfh | 2 +- core/Lucy/Search/NOTQuery.cfh | 2 +- core/Lucy/Search/PhraseQuery.cfh | 2 +- core/Lucy/Search/PolyQuery.cfh | 2 +- core/Lucy/Search/TermQuery.cfh | 2 +- core/LucyX/Search/ProximityQuery.cfh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy/blob/0e31a39d/core/Lucy/Search/Compiler.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Search/Compiler.cfh b/core/Lucy/Search/Compiler.cfh index 478f8dd..9c6924c 100644 --- a/core/Lucy/Search/Compiler.cfh +++ b/core/Lucy/Search/Compiler.cfh @@ -147,7 +147,7 @@ public class Lucy::Search::Compiler inherits Lucy::Search::Query { * @param doc_vec A DocVector. * @param field The name of the field. */ - public incremented Vector* + incremented Vector* Highlight_Spans(Compiler *self, Searcher *searcher, DocVector *doc_vec, String *field); http://git-wip-us.apache.org/repos/asf/lucy/blob/0e31a39d/core/Lucy/Search/NOTQuery.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Search/NOTQuery.cfh b/core/Lucy/Search/NOTQuery.cfh index 47689d5..9b5493d 100644 --- a/core/Lucy/Search/NOTQuery.cfh +++ b/core/Lucy/Search/NOTQuery.cfh @@ -76,7 +76,7 @@ class Lucy::Search::NOTCompiler public float Sum_Of_Squared_Weights(NOTCompiler *self); - public incremented Vector* + incremented Vector* Highlight_Spans(NOTCompiler *self, Searcher *searcher, DocVector *doc_vec, String *field); } http://git-wip-us.apache.org/repos/asf/lucy/blob/0e31a39d/core/Lucy/Search/PhraseQuery.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Search/PhraseQuery.cfh b/core/Lucy/Search/PhraseQuery.cfh index b9212da..9c1c2f6 100644 --- a/core/Lucy/Search/PhraseQuery.cfh +++ b/core/Lucy/Search/PhraseQuery.cfh @@ -100,7 +100,7 @@ class Lucy::Search::PhraseCompiler public void Apply_Norm_Factor(PhraseCompiler *self, float factor); - public incremented Vector* + incremented Vector* Highlight_Spans(PhraseCompiler *self, Searcher *searcher, DocVector *doc_vec, String *field); http://git-wip-us.apache.org/repos/asf/lucy/blob/0e31a39d/core/Lucy/Search/PolyQuery.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Search/PolyQuery.cfh b/core/Lucy/Search/PolyQuery.cfh index a61220c..36dae7a 100644 --- a/core/Lucy/Search/PolyQuery.cfh +++ b/core/Lucy/Search/PolyQuery.cfh @@ -83,7 +83,7 @@ abstract class Lucy::Search::PolyCompiler inherits Lucy::Search::Compiler { public void Apply_Norm_Factor(PolyCompiler *self, float factor); - public incremented Vector* + incremented Vector* Highlight_Spans(PolyCompiler *self, Searcher *searcher, DocVector *doc_vec, String *field); http://git-wip-us.apache.org/repos/asf/lucy/blob/0e31a39d/core/Lucy/Search/TermQuery.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Search/TermQuery.cfh b/core/Lucy/Search/TermQuery.cfh index cd6e857..ea50003 100644 --- a/core/Lucy/Search/TermQuery.cfh +++ b/core/Lucy/Search/TermQuery.cfh @@ -99,7 +99,7 @@ class Lucy::Search::TermCompiler inherits Lucy::Search::Compiler { public void Apply_Norm_Factor(TermCompiler *self, float factor); - public incremented Vector* + incremented Vector* Highlight_Spans(TermCompiler *self, Searcher *searcher, DocVector *doc_vec, String *field); http://git-wip-us.apache.org/repos/asf/lucy/blob/0e31a39d/core/LucyX/Search/ProximityQuery.cfh ---------------------------------------------------------------------- diff --git a/core/LucyX/Search/ProximityQuery.cfh b/core/LucyX/Search/ProximityQuery.cfh index e9d8759..5269c18 100644 --- a/core/LucyX/Search/ProximityQuery.cfh +++ b/core/LucyX/Search/ProximityQuery.cfh @@ -107,7 +107,7 @@ class LucyX::Search::ProximityCompiler public void Apply_Norm_Factor(ProximityCompiler *self, float factor); - public incremented Vector* + incremented Vector* Highlight_Spans(ProximityCompiler *self, Searcher *searcher, DocVector *doc_vec, String *field);
