Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Logging
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv15695/Logging
Modified Files:
SimpleLoggingAdvice.cs
Log Message:
simple fixes to compile on .net 1.0
Index: SimpleLoggingAdvice.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Logging/SimpleLoggingAdvice.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SimpleLoggingAdvice.cs 10 Oct 2007 07:42:10 -0000 1.2
--- SimpleLoggingAdvice.cs 10 Oct 2007 17:10:50 -0000 1.3
***************
*** 329,333 ****
if (s.EndsWith(seperator))
{
! return s.Remove(s.Length - seperator.Length);
}
else
--- 329,333 ----
if (s.EndsWith(seperator))
{
! return s.Substring(0,s.Length - seperator.Length);
}
else
|