in src/main/java/com/intellij/internal/statistic/eventLog/connection/metadata/EventGroupFilterRules.java [144:149]
public static VersionRange create(@Nullable String from, @Nullable String to) {
return new VersionRange(
from == null ? 0 : tryToParse(from, Integer.MAX_VALUE),
to == null ? Integer.MAX_VALUE : tryToParse(to, 0)
);
}