Getting changed Lines from ChangeSet
I want to get the lines of code that have changed from IChangeSet
I am trying with a stand alone Java Client. I get the changeset, the changes and the IVersionableHandle Is it possible to extract the lines that have changed ? IChangeSet changeSet = (IChangeSet)changeItem; Collection<IChange> changes = changeSet.changes(); for(IChange change : changes){ IVersionableHandle handle = change.item(); } |
Be the first one to answer this question!
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.