Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 036535e7 authored by shamim-emon's avatar shamim-emon
Browse files

refactor: convert imapmessage class from java to kotlin

parent 19fdafbd
Loading
Loading
Loading
Loading
+7 −9
Original line number Original line Diff line number Diff line
package com.fsck.k9.mail.store.imap;
package com.fsck.k9.mail.store.imap


import com.fsck.k9.mail.internet.MimeMessage


import com.fsck.k9.mail.internet.MimeMessage;
class ImapMessage(uid: String) : MimeMessage() {

    init {

        this.mUid = uid
public class ImapMessage extends MimeMessage {
    ImapMessage(String uid) {
        this.mUid = uid;
    }
    }


    public void setSize(int size) {
    fun setSize(size: Int) {
        this.mSize = size;
        this.mSize = size
    }
    }
}
}