Java: Normalize parentheses.

This commit is contained in:
Anders Schack-Mulligen
2018-11-28 15:01:25 +01:00
parent 41edd61e2e
commit ae44b90456
84 changed files with 649 additions and 876 deletions

View File

@@ -14,9 +14,6 @@ import java
from EmptyStmt empty, string action
where
if exists(LoopStmt l | l.getBody() = empty)
then (
action = "turned into '{}'"
) else (
action = "deleted"
)
then action = "turned into '{}'"
else action = "deleted"
select empty, "This empty statement should be " + action + "."