Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
rudy-regazzoni-sonarsource committed Dec 5, 2024
1 parent fbf1463 commit 98372ac
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ void test() {
.matches("public(set) string $a;")
.matches("protected(set) string $a;")
.matches("private(set) string $a;")
.notMatches("public( set) string $a;") // spaces are not accepted
.notMatches("public( set) string $a;") // spaces are not accepted
.notMatches("public(set ) string $a;")
.notMatches("public( set ) string $a;");;
.notMatches("public( set ) string $a;");
;
}
}

0 comments on commit 98372ac

Please sign in to comment.