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:
parent
086ebb8300
commit
9713d08ccc
|
|
@ -62,7 +62,7 @@ class HtmlTag {
|
|||
this.position = position;
|
||||
this.text = text;
|
||||
this.closedTag = closedTag;
|
||||
this.incompleteTag = incomplete;
|
||||
incompleteTag = incomplete;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue