public static RegexParser loadParser()

in regex-parser/src/jetbrains/teamcity/util/regex/ParserLoader.java [43:50]


  public static RegexParser loadParser(@NotNull final InputStream parserConfigStream) throws ParserLoadingException {
    try {
      return RegexParser.deserialize(parserConfigStream);
    } catch (final IOException e) {
      LOG.warnAndDebugDetails("Failed to read parser configuration", e);
      throw new ParserLoadingException("Failed to read parser configuration: " + e.getMessage());
    }
  }