Java: automodel application mode: test case for overridden method candidate

This commit is contained in:
Stephan Brandauer
2023-09-07 12:20:56 +02:00
parent 1e1b59ed52
commit 3121949123
4 changed files with 25 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
import hudson.Plugin;
public class PluginImpl implements Plugin {
@Override
public void configure(String name, String value) {
// ...
}
}