How to compare two base lines with rtc java api?
Hi @all,
how can I compare two base lines (IBaseline) not base line sets (IBaselineSet) with the rtc java plain api?
Unfortunately the IWorkspaceManager takes only IBaselineSet (Snapshots) but no IBaseline (base lines)
So how can i get the change set history (IChangeHistorySyncReport)?
So how can i get the change set history (IChangeHistorySyncReport)?
IChangeHistorySyncReport changeReport = workspaceManager.compareBaselineSets(baselineSets1, baselineSets2, null, null);
This code snipped works only for snapshots not for base lines