src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorUpdater.java [474:487]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                String extend = substitute(settings, attributes.getValue("extends"));
                if (extend != null) {
                    for (String tok : splitToArray(extend)) {
                        if (confs.contains(tok)) {
                            throw new IllegalArgumentException(
                                    "Cannot exclude a configuration which is extended.");
                        }
                    }
                }

                write("<" + qName);
                for (int i = 0; i < attributes.getLength(); i++) {
                    write(" " + attributes.getQName(i) + "=\""
                            + substitute(settings, attributes.getValue(i)) + "\"");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorUpdater.java [708:721]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                String extend = substitute(settings, attributes.getValue("extends"));
                                if (extend != null) {
                                    for (String tok : splitToArray(extend)) {
                                        if (confs.contains(tok)) {
                                            throw new IllegalArgumentException(
                                                    "Cannot exclude a configuration which is extended.");
                                        }
                                    }
                                }

                                write("<" + qName);
                                for (int i = 0; i < attributes.getLength(); i++) {
                                    write(" " + attributes.getQName(i) + "=\""
                                            + substitute(settings, attributes.getValue(i)) + "\"");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



