src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorUpdater.java [360:371]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                for (int i = 0; i < attributes.getLength(); i++) {
                    String attName = attributes.getQName(i);
                    if ("conf".equals(attName)) {
                        String confName = substitute(settings, attributes.getValue("conf"));
                        String newConf = removeConfigurationsFromList(confName);
                        if (!newConf.isEmpty()) {
                            write(" " + attName + "=\"" + newConf + "\"");
                            buffers.peek().setPrint(true);
                        }
                    } else {
                        write(" " + attName + "=\""
                                + substitute(settings, attributes.getValue(i)) + "\"");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorUpdater.java [380:391]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                for (int i = 0; i < attributes.getLength(); i++) {
                    String attName = attributes.getQName(i);
                    if ("conf".equals(attName)) {
                        String confName = substitute(settings, attributes.getValue("conf"));
                        String newConf = removeConfigurationsFromList(confName);
                        if (!newConf.isEmpty()) {
                            write(" " + attName + "=\"" + newConf + "\"");
                            buffers.peek().setPrint(true);
                        }
                    } else {
                        write(" " + attName + "=\""
                                + substitute(settings, attributes.getValue(i)) + "\"");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



