io.codemodder.remediation.RemediationMessages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-base Show documentation
Show all versions of codemodder-base Show documentation
Base framework for writing codemods in Java
package io.codemodder.remediation;
/**
* Holds common messages for remediation intended for human consumption as a part of CodeTF
* reporting
*/
public interface RemediationMessages {
/** No calls at that location */
String noCallsAtThatLocation = "No calls at that location";
/** Multiple calls found at the given location and that may cause confusion */
String multipleCallsFound =
"Multiple calls found at the given location and that may cause confusion";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy