config: Adjust coding style of last commit

This commit is contained in:
Hylke Bons 2012-07-10 22:13:18 +02:00
parent 63eb793abc
commit 165181c009

View file

@ -278,8 +278,9 @@ namespace SparkleLib {
public bool IdentifierExists (string identifier)
{
foreach (XmlNode node_folder in SelectNodes ("/sparkleshare/folder")) {
var id = node_folder ["identifier"];
if (id != null && identifier.Equals (id.InnerText))
XmlElement folder_id = node_folder ["identifier"];
if (folder_id != null && identifier.Equals (folder_id.InnerText))
return true;
}