Skip to content

Commit

Permalink
Delete unused modes
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Jan 4, 2025
1 parent 0b7235c commit ce3c2a9
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,6 @@ public interface XmlNode {

String CHILDREN_COMBINATION_APPEND = "append";

/**
* This default mode for combining children DOMs during merge means that where element names match, the process will
* try to merge the element data, rather than putting the dominant and recessive elements (which share the same
* element name) as siblings in the resulting DOM.
*/
String DEFAULT_CHILDREN_COMBINATION_MODE = CHILDREN_COMBINATION_MERGE;

String SELF_COMBINATION_MODE_ATTRIBUTE = "combine.self";

String SELF_COMBINATION_OVERRIDE = "override";
Expand All @@ -69,14 +62,6 @@ public interface XmlNode {
*/
String KEYS_COMBINATION_MODE_ATTRIBUTE = "combine.keys";

/**
* This default mode for combining a DOM node during merge means that where element names match, the process will
* try to merge the element attributes and values, rather than overriding the recessive element completely with the
* dominant one. This means that wherever the dominant element doesn't provide the value or a particular attribute,
* that value or attribute will be set from the recessive DOM node.
*/
String DEFAULT_SELF_COMBINATION_MODE = SELF_COMBINATION_MERGE;

@Nonnull
String getName();

Expand Down

0 comments on commit ce3c2a9

Please sign in to comment.