We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a374a98 commit 1b8225dCopy full SHA for 1b8225d
libs/css/src/style_selector.rs
@@ -29,7 +29,6 @@ fn optimize_selector_string(selector: &str) -> String {
29
.replace(", ", ",")
30
}
31
pub fn optimize_selector(selector: StyleSelector) -> StyleSelector {
32
- println!("optimize_selector: {:?}", selector);
33
match selector {
34
StyleSelector::Media { query, selector } => StyleSelector::Media {
35
query: query.to_string(),
@@ -121,7 +120,6 @@ impl Ord for StyleSelector {
121
120
122
impl From<&str> for StyleSelector {
123
fn from(value: &str) -> Self {
124
- println!("from: {:?}", value);
125
let value = value
126
.split_whitespace()
127
.collect::<Vec<_>>()
0 commit comments