ILocateChangeSetSearchCriteriaFactory.create
![]()
I had a program developed against 4.0.0.1 that used the method
ILocateChangeSetSearchCriteriaFactory.create(java.util.List<IChangeSetHandle> changeSets, java.util.List<IWorkspaceHandle> workspaces, java.util.List<IBaselineSetHandle> snapshots) And now at 4.0.6 my build is broken because this function is no longer in the class. Instead I have: ILocateChangeSetSearchCriteriaFactory.create(java.util.List changeSets, java.util.List workspaces, java.util.List snapshots, java.util.List baselines) ILocateChangeSetSearchCriteriaFactory.create(java.util.List changeSets, java.util.List workspaces, java.util.List snapshots, java.util.List baselines, boolean includeCopies) So my build is broken, and presumably my program won't run against 4.0.6 because it no longer contains the method I coded against. Moving forwards, though.... the javadoc says "baselines" cannot be null. What should it be set to? What if I don't want to search in baselines, but only in snapshots? Please provide an answer, and clarify the javadoc - thanks! |