Skip to content

Commit b549205

Browse files
committed
Remove superfluous parens
1 parent 97694bc commit b549205

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

java/ql/src/utils/GenerateFlowTestCase.qll

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,13 @@ class TestCase extends TTestCase {
242242
(i = -1 or exists(callable.getParameter(i))) and
243243
if baseInput = SummaryComponentStack::argument(i)
244244
then result = "in"
245-
else (
245+
else
246246
if baseOutput = SummaryComponentStack::argument(i)
247247
then result = "out"
248-
else (
249-
if i = -1 then result = "instance" else result = this.getFiller(i)
250-
)
251-
)
248+
else
249+
if i = -1
250+
then result = "instance"
251+
else result = this.getFiller(i)
252252
}
253253

254254
/**

0 commit comments

Comments
 (0)