2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

REFACTOR: removes useless assignment to local variable (#9676)

This commit is contained in:
Joffrey JAFFEUX 2020-05-07 16:35:54 +02:00 committed by GitHub
parent 08e8ae82cc
commit affc79bb68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ const inlineRule = {
token.content = content;
}
token = state.push("wrap_close", "span", -1);
state.push("wrap_close", "span", -1);
return true;
}
};