Skip to content

Commit

Permalink
feat(#540): add one more suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Oct 10, 2024
1 parent 7b53e91 commit 12ea088
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public String testCode() {
* @checkstyle JavaNCSSCheck (350 lines)
* @checkstyle AvoidNestedBlocksCheck (350 lines)
*/
@SuppressWarnings("PMD.NcssCount")
@SuppressWarnings({"PMD.NcssCount", "PMD.ExcessiveMethodLength"})
public int impact() {
final int result;
final Instruction instruction = Instruction.find(this.opcode);
Expand Down

4 comments on commit 12ea088

@0pdd
Copy link

@0pdd 0pdd commented on 12ea088 Oct 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 528-c5cdad7d disappeared from src/main/java/org/eolang/jeo/representation/bytecode/CustomClassWriter.java), that's why I closed #540. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link

@0pdd 0pdd commented on 12ea088 Oct 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 540-0aebf33b discovered in src/main/java/org/eolang/jeo/representation/bytecode/CustomClassWriter.java) and submitted as #750. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link

@0pdd 0pdd commented on 12ea088 Oct 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 540-a5f1402b discovered in src/main/java/org/eolang/jeo/representation/bytecode/MaxLocals.java) and submitted as #751. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link

@0pdd 0pdd commented on 12ea088 Oct 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 540-50609d1b discovered in src/main/java/org/eolang/jeo/representation/bytecode/MaxStack.java) and submitted as #752. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.