Skip to content

Commit

Permalink
feat(objectionary#3332): remove redundant inteface declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Dec 18, 2024
1 parent b5bacdd commit 66f1399
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions eo-parser/src/main/java/org/eolang/parser/ParsingErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import org.antlr.v4.runtime.ANTLRErrorListener;
import org.antlr.v4.runtime.BaseErrorListener;
import org.antlr.v4.runtime.RecognitionException;
import org.antlr.v4.runtime.Recognizer;
Expand All @@ -41,8 +40,7 @@
*
* @since 0.30.0
*/
final class ParsingErrors extends BaseErrorListener
implements ANTLRErrorListener, Iterable<Directive> {
final class ParsingErrors extends BaseErrorListener implements Iterable<Directive> {

/**
* Errors accumulated.
Expand Down

0 comments on commit 66f1399

Please sign in to comment.