1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-28 12:12:21 -05:00
k-9/src/com/fsck/k9/mail/BodyPart.java

11 lines
188 B
Java
Raw Normal View History

package com.fsck.k9.mail;
public abstract class BodyPart implements Part {
protected Multipart mParent;
public Multipart getParent() {
return mParent;
}
}