Skip to content

Commit bf198ff

Browse files
authored
Partial revert of "Support combine.self='remove'" to fix MNG-7709 (#241)
This reverts commit 89f74c5. # Conflicts: # src/test/java/org/codehaus/plexus/util/xml/Xpp3DomTest.java
1 parent 32b72a6 commit bf198ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/codehaus/plexus/util/xml/Xpp3Dom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ private static void mergeIntoXpp3Dom( Xpp3Dom dominant, Xpp3Dom recessive, Boole
445445
{
446446
for ( String attr : recessive.attributes.keySet() )
447447
{
448-
if ( isEmpty( dominant.getAttribute( attr ) ) && !SELF_COMBINATION_MODE_ATTRIBUTE.equals( attr ) )
448+
if ( isEmpty( dominant.getAttribute( attr ) ) )
449449
{
450450
dominant.setAttribute( attr, recessive.getAttribute( attr ) );
451451
}

0 commit comments

Comments
 (0)