static

in src/java/org/elasticsearch/analysis/hunspell/eu/BasqueHunspellAnalyzer.java [73:83]


    static {
      try {
        DEFAULT_SET = WordlistLoader.getSnowballWordSet(
                        IOUtils.getDecodingReader(BasqueAnalyzer.class, BasqueAnalyzer.DEFAULT_STOPWORD_FILE, StandardCharsets.UTF_8), 
                        new CharArraySet(16, true));
      } catch (IOException ex) {
        // default set should always be present as it is part of the
        // distribution (JAR)
        throw new RuntimeException("Unable to load default stopword set");
      }
    }