Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0002239: The xml publisher removes '-' from the key data so 'This is …
…a test" and 'This-is-a-test' are equivalent. This is wrong.
  • Loading branch information
chenson42 committed Mar 25, 2015
1 parent be95c17 commit 397db0b
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -365,9 +365,6 @@ protected String toXmlGroupId(String[] columnNames, String[] data, String[] keyN
}
}

if (id.length() > 0) {
return id.toString().replaceAll("-", "");
}
} else {
log.warn("You did not specify 'groupByColumnNames'. We cannot find any matches in the data to publish as XML if you don't. You might as well turn off this filter!");
}
Expand Down

0 comments on commit 397db0b

Please sign in to comment.