Refactoring

pull/207/head
M66B 3 years ago
parent c3b905c9e4
commit 4b65c90d62

@ -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();
}

Loading…
Cancel
Save