How to get unresolved changes of a repository workspace using java API
![]()
Karthick Ravichandran (11●1)
| asked Oct 12 '18, 8:10 a.m.
edited Oct 12 '18, 12:37 p.m. by David Lafreniere (4.8k●7)
We are able to get the OutgoingChangeSets using the below code. But is there a way to find the unresolved changes of the workspace?
IChangeHistorySyncReport changeHistorySyncReport =
repositoryWorkspcaeConnection.compareTo(streamConnection,
WorkspaceComparisonFlags.CHANGE_SET_COMPARISON_ONLY, Collections.EMPTY_LIST, monitor);
List<IChangeSetHandle> outgoingChangeSets = changeHistorySyncReport.outgoingChangeSets();
Thanks.
|