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 4a4d4ef1ca47fe28474672a2153475a2e490e055
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Jul 9 14:33:22 2024 -0400

    Add @Override
---
 .../commons/jci2/compiler/rhino/RhinoCompilationProblem.java       | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git 
a/compilers/rhino/src/main/java/org/apache/commons/jci2/compiler/rhino/RhinoCompilationProblem.java
 
b/compilers/rhino/src/main/java/org/apache/commons/jci2/compiler/rhino/RhinoCompilationProblem.java
index e9572b6..69b8880 100755
--- 
a/compilers/rhino/src/main/java/org/apache/commons/jci2/compiler/rhino/RhinoCompilationProblem.java
+++ 
b/compilers/rhino/src/main/java/org/apache/commons/jci2/compiler/rhino/RhinoCompilationProblem.java
@@ -39,30 +39,37 @@ public final class RhinoCompilationProblem implements 
CompilationProblem {
         error = pError;
     }
 
+    @Override
     public int getEndColumn() {
         return column;
     }
 
+    @Override
     public int getEndLine() {
         return line;
     }
 
+    @Override
     public String getFileName() {
         return fileName;
     }
 
+    @Override
     public String getMessage() {
         return message;
     }
 
+    @Override
     public int getStartColumn() {
         return column;
     }
 
+    @Override
     public int getStartLine() {
         return line;
     }
 
+    @Override
     public boolean isError() {
         return error;
     }

Reply via email to