private static int tryParseInt()

in src/main/java/com/intellij/internal/statistic/eventLog/EventLogBuild.java [66:73]


  private static int tryParseInt(@NotNull String version) {
    try {
      return Integer.parseInt(version);
    }
    catch (NumberFormatException e) {
      return 0;
    }
  }