use of org.eclipse.linuxtools.internal.rpm.ui.editor.parser.SourceComparator in project linuxtools by eclipse.
the class Specfile method getPatches.
public List<SpecfileSource> getPatches() {
List<SpecfileSource> patchesList = new ArrayList<>(patches.values());
Collections.sort(patchesList, new SourceComparator());
return patchesList;
}
use of org.eclipse.linuxtools.internal.rpm.ui.editor.parser.SourceComparator in project linuxtools by eclipse.
the class Specfile method getSources.
public List<SpecfileSource> getSources() {
List<SpecfileSource> sourcesList = new ArrayList<>(sources.values());
Collections.sort(sourcesList, new SourceComparator());
return sourcesList;
}
Aggregations