Skip to content

Commit

Permalink
fix(#2769): checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Jan 12, 2024
1 parent 3cb3852 commit 64dbbf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ public void exec() {
phi.getFileName().toString().replace(".phi", ""),
new TextOf(phi)
).parsed();
System.out.println(parsed);
home.save(parsed.toString(), xmir);
Logger.info(
this,
Expand Down
2 changes: 2 additions & 0 deletions eo-parser/src/main/java/org/eolang/parser/XePhiListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
* @checkstyle CyclomaticComplexityCheck (500 lines)
* @checkstyle ClassFanOutComplexityCheck (500 lines)
* @checkstyle MethodCountCheck (1300 lines)
* @checkstyle NestedIfDepthCheck (1300 lines)
* @since 0.34.0
*/
@SuppressWarnings({
Expand Down Expand Up @@ -200,6 +201,7 @@ public void enterBinding(final PhiParser.BindingContext ctx) {
}

@Override
@SuppressWarnings("PMD.ConfusingTernary")
public void exitBinding(final PhiParser.BindingContext ctx) {
if (this.objs.size() > this.packages.size()) {
if (ctx.alphaBinding() != null) {
Expand Down

0 comments on commit 64dbbf2

Please sign in to comment.