We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b501c commit c0e0798Copy full SHA for c0e0798
1 file changed
mail/common/src/main/java/com/fsck/k9/mail/helper/Rfc822Token.java
@@ -204,7 +204,8 @@ public boolean equals(@Nullable Object o) {
204
stringEquals(mComment, other.mComment));
205
}
206
207
- public static String withULabelDomain(final String address) {
+ @Nullable
208
+ public static String withULabelDomain(@Nullable final String address) {
209
if (address == null) return null;
210
int at = address.lastIndexOf('@');
211
if (at < 0 || at == address.length()-1)
0 commit comments