Merge pull request #7413 from thunderbird/change_connection_security_to_kotlin

Change `ConnectionSecurity` to Kotlin
This commit is contained in:
Wolf-Martell Montwé 2023-12-05 13:18:30 +00:00 committed by GitHub
commit ef4b769676
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -1,7 +0,0 @@
package com.fsck.k9.mail;
public enum ConnectionSecurity {
NONE,
STARTTLS_REQUIRED,
SSL_TLS_REQUIRED
}

View file

@ -0,0 +1,7 @@
package com.fsck.k9.mail
enum class ConnectionSecurity {
NONE,
STARTTLS_REQUIRED,
SSL_TLS_REQUIRED,
}