io.codemodder.remediation.LegacyFixCandidateSearchResults Maven / Gradle / Ivy
package io.codemodder.remediation;
import io.codemodder.codetf.UnfixedFinding;
import java.util.List;
/** The results of a fix candidate search. */
@Deprecated
public interface LegacyFixCandidateSearchResults {
/** The findings that for which we could not find potential fix locations. */
List unfixableFindings();
/** The potential fix locations. */
List> fixCandidates();
}