Refactoring

This commit is contained in:
M66B 2022-03-14 11:33:10 +01:00
parent c3b905c9e4
commit 4b65c90d62
1 changed files with 4 additions and 2 deletions

View File

@ -2015,8 +2015,8 @@ public class HtmlHelper {
// https://tools.ietf.org/html/rfc3676
static String flow(String text, boolean delsp) {
boolean continuation = false;
boolean inquote = false;
boolean continuation = false;
StringBuilder flowed = new StringBuilder();
String[] lines = text.split("\\r?\\n");
for (int l = 0; l < lines.length; l++) {
@ -2045,9 +2045,11 @@ public class HtmlHelper {
continuation = (line.endsWith(" ") && !"-- ".equals(line));
flowed.append(line);
if (!continuation)
flowed.append("\r\n");
flowed.append("\n");
}
return flowed.toString();
}