mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 11:28:18 +00:00
REFACToR: removes useless assignment to local variable (#9675)
This commit is contained in:
parent
a04b226c2b
commit
a078b086ba
@ -103,7 +103,7 @@ const rule = {
|
||||
token = state.push("quote_controls_open", "div", 1);
|
||||
token.attrs = [["class", "quote-controls"]];
|
||||
|
||||
token = state.push("quote_controls_close", "div", -1);
|
||||
state.push("quote_controls_close", "div", -1);
|
||||
|
||||
if (avatarImg) {
|
||||
token = state.push("html_inline", "", 0);
|
||||
@ -144,10 +144,10 @@ const rule = {
|
||||
token.content = ` ${displayName}:`;
|
||||
}
|
||||
|
||||
token = state.push("quote_header_close", "div", -1);
|
||||
state.push("quote_header_close", "div", -1);
|
||||
}
|
||||
|
||||
token = state.push("bbcode_open", "blockquote", 1);
|
||||
state.push("bbcode_open", "blockquote", 1);
|
||||
},
|
||||
|
||||
after: function(state) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user