in src/main/java/com/intellij/internal/statistic/eventLog/connection/metadata/EventGroupFilterRules.java [151:161]
private static int tryToParse(@Nullable String value, int defaultValue) {
try {
if (value != null) {
return Integer.parseInt(value.trim());
}
}
catch (NumberFormatException e) {
// ignore
}
return defaultValue;
}