Skip to content

Commit cb47e0a

Browse files
authored
Merge pull request #9311 from wmontwe/refactor-mail-to-kotlin
Refactor mail to kotlin
2 parents a306950 + 687458f commit cb47e0a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

mail/common/src/main/java/com/fsck/k9/mail/AuthType.java renamed to mail/common/src/main/java/com/fsck/k9/mail/AuthType.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.fsck.k9.mail;
1+
package com.fsck.k9.mail
22

3-
public enum AuthType {
3+
enum class AuthType {
44
/*
55
* The names of these authentication types are saved as strings when
66
* settings are exported and are also saved as part of the Server URI stored
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package com.fsck.k9.mail;
1+
package com.fsck.k9.mail
22

3-
public enum FolderType {
3+
enum class FolderType {
44
REGULAR,
55
INBOX,
66
OUTBOX,
77
DRAFTS,
88
SENT,
99
TRASH,
1010
SPAM,
11-
ARCHIVE
11+
ARCHIVE,
1212
}

0 commit comments

Comments
 (0)