Hi Scott, I don't know why commit mails go to the general list, but this one caught my eye:
On 2011-08-17, <[email protected]> wrote: > Node fileNameNode = > appenderChild.getAttributes().getNamedItem("name"); > - if (fileNameNode != null && > fileNameNode.getNodeValue().equals("file")) { > + If (fileNameNode != null && > fileNameNode.getNodeValue().toLowerCase().equals("file")) { this is a locale sensitive comparison which is likely to cause problems in the famous Turkish/Azeri locale case ("I".toLowerCase() != "i" there). You may want to use fileNameNode.getNodeValue().equalsIgnoreCase("file") instead, which is safe. Stefan
