All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.remediation.xss.XSSFixGroup Maven / Gradle / Ivy

package io.codemodder.remediation.xss;

import java.util.List;
import java.util.Objects;

/** A collection of issues that are all fixable at the same line (and column, if available). */
record XSSFixGroup(List issues) {
  XSSFixGroup {
    Objects.requireNonNull(issues, "issues");
    if (issues.isEmpty()) {
      throw new IllegalArgumentException("Must have at least one issue");
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy