Skip to content

Commit

Permalink
feat(objectionary#86): fix all linter mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Jan 16, 2024
1 parent 58bd807 commit 7c549db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/java/org/eolang/opeo/ast/Invocation.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public Invocation(
* @param method Method name
* @param descriptor Method descriptor
* @param args Arguments
* @checkstyle ParameterNumberCheck (5 lines)
*/
public Invocation(
final AstNode source,
Expand All @@ -90,7 +91,6 @@ public Invocation(
this(source, method, Arrays.asList(args), descriptor);
}


/**
* Constructor.
* @param source Source or target on which the invocation is performed
Expand All @@ -111,6 +111,7 @@ public Invocation(
* @param method Method name
* @param arguments Arguments
* @param descriptor Descriptor
* @checkstyle ParameterNumberCheck (5 lines)
*/
public Invocation(
final AstNode source,
Expand Down
1 change: 0 additions & 1 deletion src/test/java/org/eolang/opeo/ast/InvocationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import org.junit.jupiter.api.Test;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;
import org.xembly.Directive;
import org.xembly.ImpossibleModificationException;
import org.xembly.Transformers;
import org.xembly.Xembler;
Expand Down

0 comments on commit 7c549db

Please sign in to comment.