Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21097/NHibernate/Util
Modified Files:
StringHelper.cs
Log Message:
removed [Obsolete] Join method.
Index: StringHelper.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Util/StringHelper.cs,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** StringHelper.cs 12 Jul 2004 01:30:21 -0000 1.14
--- StringHelper.cs 19 Aug 2004 17:53:55 -0000 1.15
***************
*** 15,23 ****
public const string SqlParameter = "?";
- [Obsolete("Use String.Join() instead of this method. It does the same thing")]
- public static string Join(string separator, string[] strings) {
- return string.Join(separator, strings);
- }
-
public static string Repeat(string str, int times) {
StringBuilder buf = new StringBuilder(str.Length * times);
--- 15,18 ----
|