Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5221/NHibernate/Util
Modified Files:
StringHelper.cs
Log Message:
Removed commented out code.
Index: StringHelper.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Util/StringHelper.cs,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** StringHelper.cs 15 Apr 2004 21:07:19 -0000 1.11
--- StringHelper.cs 20 May 2004 20:55:54 -0000 1.12
***************
*** 15,20 ****
public const string SqlParameter = "?";
- // public static Dialect.Dialect Dialect;
-
[Obsolete("Use String.Join() instead of this method. It does the same thing")]
public static string Join(string separator, string[] strings) {
--- 15,18 ----
***************
*** 189,213 ****
return results;
}
- //
- // [Obsolete("Should directly call Dialect instead")]
- // public static string UnQuote(string name) {
- // return Dialect.UnQuote(name);
- // }
- //
- // [Obsolete("Should directly call Dialect instead")]
- // public static void UnQuoteInPlace(string[] names)
- // {
- // for (int i=0; i<names.Length; i++)
- // names[i] = UnQuote(names[i]);
- // }
- //
- // [Obsolete("Should directly call Dialect instead")]
- // public static string[] UnQuote(string[] names)
- // {
- // string[] unquoted = new string[ names.Length ];
- // for (int i=0; i<names.Length; i++)
- // unquoted[i] = UnQuote(names[i]);
- // return unquoted;
- // }
}
}
--- 187,190 ----
|