This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jci.git
commit 8867c7c09b1b7789601c4d2a4bddf93c6f91695d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jul 9 14:34:40 2024 -0400 Add @Override --- .../java/org/apache/commons/jci2/examples/configuration/Something.java | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/src/main/java/org/apache/commons/jci2/examples/configuration/Something.java b/examples/src/main/java/org/apache/commons/jci2/examples/configuration/Something.java index cfddfd6..4572eeb 100644 --- a/examples/src/main/java/org/apache/commons/jci2/examples/configuration/Something.java +++ b/examples/src/main/java/org/apache/commons/jci2/examples/configuration/Something.java @@ -21,6 +21,7 @@ import java.util.Properties; public class Something implements Configurable { + @Override public void configure( final Properties properties ) throws ConfigurationException { System.out.println("Configuration changed"); }