File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ Please also have a look at our
40
40
41
41
### Removed
42
42
43
+ - Drop greedy calculation of selector specificity (#1021 )
43
44
- Drop ` getLineNo() ` from the ` Renderable ` interface (#1038 )
44
45
- Remove ` OutputFormat::level() ` (#874 )
45
46
- Remove expansion of shorthand properties (#838 )
Original file line number Diff line number Diff line change @@ -87,15 +87,9 @@ public static function isValid(string $selector)
87
87
return \preg_match (static ::SELECTOR_VALIDATION_RX , $ selector );
88
88
}
89
89
90
- /**
91
- * @param bool $calculateSpecificity @deprecated since V8.8.0, will be removed in V9.0.0
92
- */
93
- public function __construct (string $ selector , bool $ calculateSpecificity = false )
90
+ public function __construct (string $ selector )
94
91
{
95
92
$ this ->setSelector ($ selector );
96
- if ($ calculateSpecificity ) {
97
- $ this ->getSpecificity ();
98
- }
99
93
}
100
94
101
95
public function getSelector (): string
You can’t perform that action at this time.
0 commit comments