mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 03:15:39 +01:00
Refactoring
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user