Refactoring

pull/199/head 1.1626
M66B 4 years ago
parent 79653a83ee
commit 4f655aef4a

@ -8162,6 +8162,10 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
return this; return this;
} }
boolean isAccross() {
return (sourceAccount.id != targetAccount.id);
}
protected MessageTarget(Parcel in) { protected MessageTarget(Parcel in) {
id = in.readLong(); id = in.readLong();
sourceAccount = (Account) in.readSerializable(); sourceAccount = (Account) in.readSerializable();
@ -8181,10 +8185,6 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
dest.writeInt(copy ? 1 : 0); dest.writeInt(copy ? 1 : 0);
} }
boolean isAccross() {
return (sourceAccount.id != targetAccount.id);
}
@Override @Override
public int describeContents() { public int describeContents() {
return 0; return 0;

Loading…
Cancel
Save