This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch mock in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git
commit e9e6cdaa69741d0157bf74f152dfb9e3c0469480 Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Mon Jun 30 06:24:35 2025 -0400 Remove unused methods --- .../maven/plugins/enforcer/MockEnforcerRule.java | 28 ---------------------- 1 file changed, 28 deletions(-) diff --git a/maven-enforcer-plugin/src/test/java/org/apache/maven/plugins/enforcer/MockEnforcerRule.java b/maven-enforcer-plugin/src/test/java/org/apache/maven/plugins/enforcer/MockEnforcerRule.java index 3e3cb3a0..14ce929e 100644 --- a/maven-enforcer-plugin/src/test/java/org/apache/maven/plugins/enforcer/MockEnforcerRule.java +++ b/maven-enforcer-plugin/src/test/java/org/apache/maven/plugins/enforcer/MockEnforcerRule.java @@ -69,34 +69,6 @@ public class MockEnforcerRule implements EnforcerRule { this.failRule = theFailRule; } - /** - * @return the isResultValid - */ - public boolean isResultValid() { - return this.isResultValid; - } - - /** - * @param theIsResultValid the isResultValid to set - */ - public void setResultValid(boolean theIsResultValid) { - this.isResultValid = theIsResultValid; - } - - /** - * @param theCacheId the cacheId to set - */ - public void setCacheId(String theCacheId) { - this.cacheId = theCacheId; - } - - /** - * @param theIsCacheable the isCacheable to set - */ - public void setCacheable(boolean theIsCacheable) { - this.isCacheable = theIsCacheable; - } - /* * (non-Javadoc) * @see org.apache.maven.enforcer.rule.api.EnforcerRule#getCacheId()
