Skip to content

Commit 83d6d60

Browse files
authored
Merge pull request #4462 from erik-krogh/strayTodo
JS: remove stray todo
2 parents d3f8fb5 + 96db345 commit 83d6d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/ql/src/Declarations/DeadStoreOfProperty.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ predicate isAPropertyRead(Expr e, string name) {
7979
* Holds if `e` is a property write of a property `name`.
8080
*/
8181
predicate isAPropertyWrite(ControlFlowNode e, string name) {
82-
exists(DataFlow::PropWrite write | write.getWriteNode() = e and write.getPropertyName() = name) // TODO: umambi?
82+
exists(DataFlow::PropWrite write | write.getWriteNode() = e and write.getPropertyName() = name)
8383
}
8484

8585
/**

0 commit comments

Comments
 (0)