Merge pull request #7413 from thunderbird/change_connection_security_to_kotlin
Change `ConnectionSecurity` to Kotlin
This commit is contained in:
commit
ef4b769676
2 changed files with 7 additions and 7 deletions
|
@ -1,7 +0,0 @@
|
|||
package com.fsck.k9.mail;
|
||||
|
||||
public enum ConnectionSecurity {
|
||||
NONE,
|
||||
STARTTLS_REQUIRED,
|
||||
SSL_TLS_REQUIRED
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package com.fsck.k9.mail
|
||||
|
||||
enum class ConnectionSecurity {
|
||||
NONE,
|
||||
STARTTLS_REQUIRED,
|
||||
SSL_TLS_REQUIRED,
|
||||
}
|
Loading…
Reference in a new issue