Ejemplo n.º 1
0
  private static Set<String> getStopwords() {
    if (STOPWORDS == null) {
      InputStream in = Utils.getStopwords();
      try {
        // System.out.println("Reading in stopwords");
        STOPWORDS = Utils.readStringsSet(in);
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }

    return STOPWORDS;
  }