Package org.openstreetmap.josm.actions.upload

Examples of org.openstreetmap.josm.actions.upload.CyclicUploadDependencyException


        }

        protected void visit(Stack<Relation> path, Relation current) throws CyclicUploadDependencyException{
            if (path.contains(current)) {
                path.push(current);
                throw new CyclicUploadDependencyException(path);
            }
            if (!visited.contains(current)) {
                path.push(current);
                visited.add(current);
                for (Relation dependent : getChildren(current)) {
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.actions.upload.CyclicUploadDependencyException

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.