ingestion-beam/src/main/java/com/mozilla/telemetry/amplitude/FilterByDocType.java [42:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Set<String> parseAllowlistString(String allowlistString, String argument) {
    if (allowlistString == null) {
      throw new IllegalArgumentException(
          String.format("Required --%s argument not found", argument));
    }
    return Arrays.stream(allowlistString.split(",")).filter(StringUtils::isNotBlank)
        .collect(Collectors.toSet());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ingestion-beam/src/main/java/com/mozilla/telemetry/contextualservices/FilterByDocType.java [46:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Set<String> parseAllowlistString(String allowlistString, String argument) {
    if (allowlistString == null) {
      throw new IllegalArgumentException(
          String.format("Required --%s argument not found", argument));
    }
    return Arrays.stream(allowlistString.split(",")).filter(StringUtils::isNotBlank)
        .collect(Collectors.toSet());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



