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 dc1fee88d20badc02240e472974503c322da2c02 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jul 9 14:34:20 2024 -0400 Add @Override --- .../apache/commons/jci2/compiler/rhino/RhinoJavaCompilerTestCase.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compilers/rhino/src/test/java/org/apache/commons/jci2/compiler/rhino/RhinoJavaCompilerTestCase.java b/compilers/rhino/src/test/java/org/apache/commons/jci2/compiler/rhino/RhinoJavaCompilerTestCase.java index 3ce25eb..f432b7a 100644 --- a/compilers/rhino/src/test/java/org/apache/commons/jci2/compiler/rhino/RhinoJavaCompilerTestCase.java +++ b/compilers/rhino/src/test/java/org/apache/commons/jci2/compiler/rhino/RhinoJavaCompilerTestCase.java @@ -56,10 +56,12 @@ public final class RhinoJavaCompilerTestCase extends AbstractCompilerTestCase { ).getBytes()); }}; + @Override public byte[] getBytes( final String pResourceName ) { return sources.get(pResourceName); } + @Override public boolean isAvailable( final String pResourceName ) { return sources.containsKey(pResourceName); } @@ -102,10 +104,12 @@ public final class RhinoJavaCompilerTestCase extends AbstractCompilerTestCase { ).getBytes()); }}; + @Override public byte[] getBytes( final String pResourceName ) { return sources.get(pResourceName); } + @Override public boolean isAvailable( final String pResourceName ) { return sources.containsKey(pResourceName); }