Changeset 251806 in webkit


Ignore:
Timestamp:
Oct 30, 2019 2:40:07 PM (4 years ago)
Author:
commit-queue@webkit.org
Message:

Covscan: remove stray semicolon
https://bugs.webkit.org/show_bug.cgi?id=203622

Patch by Eike Rathke <erack@redhat.com> on 2019-10-30
Reviewed by Devin Rousso.

  • UserInterface/Views/CheckboxNavigationItem.js:

(WI.CheckboxNavigationItem.prototype.set label):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r251744 r251806  
     12019-10-30  Eike Rathke  <erack@redhat.com>
     2
     3        Covscan: remove stray semicolon
     4        https://bugs.webkit.org/show_bug.cgi?id=203622
     5
     6        Reviewed by Devin Rousso.
     7
     8        * UserInterface/Views/CheckboxNavigationItem.js:
     9        (WI.CheckboxNavigationItem.prototype.set label):
     10
    1112019-10-29  Nikita Vasilyev  <nvasilyev@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Views/CheckboxNavigationItem.js

    r238829 r251806  
    6060        this._checkboxLabel.removeChildren();
    6161
    62         if (label);
     62        if (label)
    6363            this._checkboxLabel.append(label);
    6464    }
Note: See TracChangeset for help on using the changeset viewer.