src/main/java/com/google/firebase/auth/SamlProviderConfig.java [186:195]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public CreateRequest addAllX509Certificates(Collection<String> x509Certificates) {
      checkArgument(x509Certificates != null,
          "The collection of x509 certificates must not be null.");
      checkArgument(!x509Certificates.isEmpty(),
          "The collection of x509 certificates must not be empty.");
      for (String certificate : x509Certificates) {
        addX509Certificate(certificate);
      }
      return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/google/firebase/auth/SamlProviderConfig.java [302:311]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public UpdateRequest addAllX509Certificates(Collection<String> x509Certificates) {
      checkArgument(x509Certificates != null,
          "The collection of x509 certificates must not be null.");
      checkArgument(!x509Certificates.isEmpty(),
          "The collection of x509 certificates must not be empty.");
      for (String certificate : x509Certificates) {
        addX509Certificate(certificate);
      }
      return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



