Skip to content

Commit ebaf642

Browse files
committed
Remove unnecessary constructor overrides (#588)
1 parent a8a2620 commit ebaf642

File tree

3 files changed

+0
-27
lines changed

3 files changed

+0
-27
lines changed

src/internal-packages/indexes/lib/component/options-toggle-bar.jsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,6 @@ const React = require('react');
55
*/
66
class OptionsToggleBar extends React.Component {
77

8-
/**
9-
* The component constructor.
10-
*
11-
* @param {Object} props - The properties.
12-
*/
13-
constructor(props) {
14-
super(props);
15-
}
16-
178
/**
189
* Render the option field toggle bar.
1910
*

src/internal-packages/indexes/lib/component/usage-column.jsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,6 @@ const NO_USAGE_STATS = 'Server versions prior to 3.2 do not support $indexStats'
1010
*/
1111
class UsageColumn extends React.Component {
1212

13-
/**
14-
* The component constructor.
15-
*
16-
* @param {Object} props - The properties.
17-
*/
18-
constructor(props) {
19-
super(props);
20-
}
21-
2213
/**
2314
* Render the usage tooltip text.
2415
*

src/internal-packages/server-stats/lib/component/server-stats-graphs-component.jsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,6 @@ const MemStore = require('../store/mem-store');
1313
*/
1414
class ServerStatsComponent extends React.Component {
1515

16-
/**
17-
* The server stats component constructor.
18-
*
19-
* @param {Object} props - The component properties.
20-
*/
21-
constructor(props) {
22-
super(props);
23-
}
24-
2516
/**
2617
* When the component mounts, start the polling timer.
2718
*/

0 commit comments

Comments
 (0)