• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pmd / pmd / 277

27 Nov 2025 01:37PM UTC coverage: 78.778% (+0.03%) from 78.749%
277

push

github

adangel
[java] UseArraysAsList: skip when if-statements (#6228)

18419 of 24233 branches covered (76.01%)

Branch coverage included in aggregate %.

40090 of 50038 relevant lines covered (80.12%)

0.81 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/ast/ASTStatement.java
1
/*
2
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3
 */
4

5
package net.sourceforge.pmd.lang.apex.ast;
6

7
import com.google.summit.ast.Node;
8

9
/**
10
 * @deprecated Since 7.19.0. This AST node is not used and doesn't appear in the tree.
11
 */
12
@Deprecated
13
public final class ASTStatement extends AbstractApexNode.Single<Node> {
14

15
    ASTStatement(Node statement) {
16
        super(statement);
×
17
    }
×
18

19

20
    @Override
21
    protected <P, R> R acceptApexVisitor(ApexVisitor<? super P, ? extends R> visitor, P data) {
22
        return visitor.visit(this, data);
×
23
    }
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc