mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
make fields final
This commit is contained in:
parent
3c1701ea5a
commit
c068da3fcb
@ -52,8 +52,8 @@ class LuceneQuery implements KeywordSearchQuery {
|
|||||||
private static final Logger logger = Logger.getLogger(LuceneQuery.class.getName());
|
private static final Logger logger = Logger.getLogger(LuceneQuery.class.getName());
|
||||||
private String keywordStringEscaped;
|
private String keywordStringEscaped;
|
||||||
private boolean isEscaped;
|
private boolean isEscaped;
|
||||||
private Keyword originalKeyword = null;
|
private final Keyword originalKeyword ;
|
||||||
private KeywordList keywordList = null;
|
private final KeywordList keywordList ;
|
||||||
private final List<KeywordQueryFilter> filters = new ArrayList<>();
|
private final List<KeywordQueryFilter> filters = new ArrayList<>();
|
||||||
private String field = null;
|
private String field = null;
|
||||||
private static final int MAX_RESULTS_PER_CURSOR_MARK = 512;
|
private static final int MAX_RESULTS_PER_CURSOR_MARK = 512;
|
||||||
@ -70,7 +70,6 @@ class LuceneQuery implements KeywordSearchQuery {
|
|||||||
LuceneQuery(KeywordList keywordList, Keyword keyword) {
|
LuceneQuery(KeywordList keywordList, Keyword keyword) {
|
||||||
this.keywordList = keywordList;
|
this.keywordList = keywordList;
|
||||||
this.originalKeyword = keyword;
|
this.originalKeyword = keyword;
|
||||||
|
|
||||||
this.keywordStringEscaped = this.originalKeyword.getSearchTerm();
|
this.keywordStringEscaped = this.originalKeyword.getSearchTerm();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user