Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Jul 26, 2024
1 parent 11ac1bf commit 264a7df
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,8 @@ impl Formatter5424 {
for (id, params) in &data {
res = res + "[" + id;
for (name, value) in params {
res = res
+ " "
+ name
+ "=\""
+ &escape_structure_data_param_value(&value)
+ "\"";
res =
res + " " + name + "=\"" + &escape_structure_data_param_value(value) + "\"";
}
res += "]";
}
Expand Down

0 comments on commit 264a7df

Please sign in to comment.