Skip to content

Commit 45797dc

Browse files
committed
autoformat
1 parent 3784b18 commit 45797dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/ql/src/Declarations/DeadStoreOfLocal.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ where
6565
// the term "definition" when the alert location is a variable declaration.
6666
if
6767
dead instanceof VariableDeclarator and
68-
not exists(SsaImplicitInit init | init.getVariable().getSourceVariable() = v) // the variable is dead at the hoisted implicit initialization.
68+
not exists(SsaImplicitInit init | init.getVariable().getSourceVariable() = v) // the variable is dead at the hoisted implicit initialization.
6969
then msg = "The initial value of " + v.getName() + " is unused, since it is always overwritten."
7070
else msg = "The value assigned to " + v.getName() + " here is unused."
7171
)

0 commit comments

Comments
 (0)