Package org.locationtech.geogig.remote

Examples of org.locationtech.geogig.remote.FilteredDiffIterator


                }

                Iterator<DiffEntry> changes = ggit.command(DiffOp.class)
                        .setNewVersion(commit.getId()).setOldVersion(parent).setReportTrees(true)
                        .call();
                FilteredDiffIterator filteredChanges = new FilteredDiffIterator(changes,
                        repository, filter) {
                    @Override
                    protected boolean trackingObject(ObjectId objectId) {
                        return tracked.contains(objectId);
                    }
View Full Code Here

TOP

Related Classes of org.locationtech.geogig.remote.FilteredDiffIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.