Reverted already fixed line from, see #7021

This commit is contained in:
Oleg Agafonov 2020-09-09 01:03:08 +04:00 committed by GitHub
parent 672b78982f
commit 0bfafff47a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ public class Effects extends ArrayList<Effect> {
|| lastRule.endsWith(".")) { || lastRule.endsWith(".")) {
endString = " "; endString = " ";
// if lastRule does not have appropriate punctuation, add the default ". " // if lastRule does not have appropriate punctuation, add the default ". "
} else if (!lastRule.endsWith("<br>")) { } else if (!lastRule.endsWith(".") && !lastRule.endsWith("<br>")) {
endString = ". "; endString = ". ";
} }
if (nextRule.length() > 3) { if (nextRule.length() > 3) {