Skip to content

Commit ee36e3b

Browse files
committed
autoformat
1 parent 403e868 commit ee36e3b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

java/ql/lib/semmle/code/java/Statement.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,9 @@ class PatternCase extends SwitchCase {
559559
/**
560560
* Gets this case's sole pattern, if there is exactly one.
561561
*/
562-
PatternExpr getUniquePattern() { result = unique(PatternExpr pe | pe = this.getPatternAtIndex(_)) }
562+
PatternExpr getUniquePattern() {
563+
result = unique(PatternExpr pe | pe = this.getPatternAtIndex(_))
564+
}
563565

564566
/** Gets the guard applicable to this pattern case, if any. */
565567
Expr getGuard() { result.isNthChildOf(this, -3) }

0 commit comments

Comments
 (0)