Remove unnecessary this keyword. #1555

Fixes `UnnecessaryThis` inspection violations.

Description:
>Reports on any unnecessary uses of this in the code. Using this to disambiguate a code reference may easily become unnecessary via automatic refactorings, and is discouraged by many coding styles.
This commit is contained in:
Michal Kordas 2015-08-27 17:31:28 +02:00 committed by Roman Ivanov
parent 086ebb8300
commit 9713d08ccc
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class HtmlTag {
this.position = position;
this.text = text;
this.closedTag = closedTag;
this.incompleteTag = incomplete;
incompleteTag = incomplete;
}
/**