RTC Client Java API: How do I get the state of the user's version before the merge from an IChange merge state?
![]() I have an IChange instance, change, which I obtained from an IChangeSet instance, changeset, via a call to changeSet.changes(). I use change.mergeStates() to get a list of the change's merge states. From the IChange.mergeStates Javadoc:
How do I get the IChange of the previous IChangeSet state? I tried calling changeSet.getMergePredecessorState() to get the the previous IChangeSet state. However, it always returns null.
|