mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
5491dee81b
Guess I should go back to svk
11 lines
188 B
Java
11 lines
188 B
Java
|
|
package com.fsck.k9.mail;
|
|
|
|
public abstract class BodyPart implements Part {
|
|
protected Multipart mParent;
|
|
|
|
public Multipart getParent() {
|
|
return mParent;
|
|
}
|
|
}
|