mirror of https://github.com/M66B/FairEmail.git
Small character optimizations
This commit is contained in:
parent
3fc63b8b6b
commit
f08fa741d1
|
@ -1319,23 +1319,22 @@ public class MessageHelper {
|
|||
// https://tools.ietf.org/html/rfc2047
|
||||
// encoded-word = "=?" charset "?" encoding "?" encoded-text "?="
|
||||
|
||||
int i = 0;
|
||||
int s, q1, q2, e, i = 0;
|
||||
List<MimeTextPart> parts = new ArrayList<>();
|
||||
|
||||
while (i < text.length()) {
|
||||
int s = text.indexOf("=?", i);
|
||||
s = text.indexOf("=?", i);
|
||||
if (s < 0)
|
||||
break;
|
||||
|
||||
int q1 = text.indexOf("?", s + 2);
|
||||
q1 = text.indexOf("?", s + 2);
|
||||
if (q1 < 0)
|
||||
break;
|
||||
|
||||
int q2 = text.indexOf("?", q1 + 1);
|
||||
q2 = text.indexOf("?", q1 + 1);
|
||||
if (q2 < 0)
|
||||
break;
|
||||
|
||||
int e = text.indexOf("?=", q2 + 1);
|
||||
e = text.indexOf("?=", q2 + 1);
|
||||
if (e < 0)
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue