Make searchTrie static

Julien LepillerThu Jun 11 04:21:54+0200 2020

76f857c

Make searchTrie static

app/src/main/java/eu/lepiller/nani/dictionary/FileDictionary.java

249249
        return results;
250250
    }
251251
252-
    <T extends Object> T searchTrie(RandomAccessFile file, long triePos, byte[] txt, TrieValsDecoder<T> decoder) throws IOException {
252+
    static<T> T searchTrie(RandomAccessFile file, long triePos, byte[] txt, TrieValsDecoder<T> decoder) throws IOException {
253253
        file.seek(triePos);
254254
        if(txt.length == 0) {
255255
            return decoder.decodeVals(file, triePos);