Skip to content

Commit

Permalink
fix: Remove unused var
Browse files Browse the repository at this point in the history
See #427
  • Loading branch information
y-lohse committed Apr 20, 2020
1 parent 4763898 commit f3a4fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InkList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export class InkList extends Map<SerializedInkListItem, number> {
}
}
public ContainsItemNamed(itemName: string | null){
for (let [key, value] of this) {
for (let [key] of this) {
let item = InkListItem.fromSerializedKey(key);
if (item.itemName == itemName) return true;
}
Expand Down

0 comments on commit f3a4fe3

Please sign in to comment.