mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-17 14:25:08 -05:00
Remove unused gmail clearup method
This commit is contained in:
parent
6e3973e26a
commit
30978384af
@ -101,24 +101,4 @@ public class EncryptTextFragment extends Fragment {
|
|||||||
mMessage.setText(text);
|
mMessage.setText(text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Fixes bad message characters for gmail
|
|
||||||
*
|
|
||||||
* @param message
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private String fixBadCharactersForGmail(String message) {
|
|
||||||
// fix the message a bit, trailing spaces and newlines break stuff,
|
|
||||||
// because GMail sends as HTML and such things fuck up the
|
|
||||||
// signature,
|
|
||||||
// TODO: things like "<" and ">" also fuck up the signature
|
|
||||||
message = message.replaceAll(" +\n", "\n");
|
|
||||||
message = message.replaceAll("\n\n+", "\n\n");
|
|
||||||
message = message.replaceFirst("^\n+", "");
|
|
||||||
// make sure there'll be exactly one newline at the end
|
|
||||||
message = message.replaceFirst("\n*$", "\n");
|
|
||||||
|
|
||||||
return message;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user