Fix hopefully minor bug in WorkSource.add

Test: n/a
Change-Id: I717cb3654fb66804d748a0e2782fb3c5507745cb
This commit is contained in:
Soonil Nagarkar
2020-11-05 14:53:45 -08:00
parent c335e90564
commit f64edf3732

View File

@@ -435,6 +435,7 @@ public class WorkSource implements Parcelable {
for (WorkChain wc : other.mChains) {
if (!mChains.contains(wc)) {
mChains.add(new WorkChain(wc));
chainAdded = true;
}
}
}