wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 55  →  ?path2? @ 59
/Languages/XML.cs
@@ -17,7 +17,7 @@
{
public static class XML
{
private static readonly Func<string, bool> directIsSafeXML =
private static readonly Func<string, bool> DirectIsSafeXML =
((Expression<Func<string, bool>>)
(data =>
Regex.Replace(data,
@@ -161,7 +161,7 @@
/// <returns>true in case the string is safe</returns>
public static bool IsSafeXML(string data)
{
return directIsSafeXML(data);
return DirectIsSafeXML(data);
}
 
///////////////////////////////////////////////////////////////////////////