nicko       2005/02/06 20:05:20

  Modified:    src/Util/TypeConverters BooleanConverter.cs
                        EncodingConverter.cs IPAddressConverter.cs
                        PatternLayoutConverter.cs PatternStringConverter.cs
                        TypeConverter.cs
  Log:
  Made type converter implementations internal
  
  Revision  Changes    Path
  1.7       +1 -1      
logging-log4net/src/Util/TypeConverters/BooleanConverter.cs
  
  Index: BooleanConverter.cs
  ===================================================================
  RCS file: 
/home/cvs/logging-log4net/src/Util/TypeConverters/BooleanConverter.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BooleanConverter.cs       17 Jan 2005 20:18:50 -0000      1.6
  +++ BooleanConverter.cs       7 Feb 2005 04:05:20 -0000       1.7
  @@ -33,7 +33,7 @@
        /// <seealso cref="IConvertTo"/>
        /// <author>Nicko Cadell</author>
        /// <author>Gert Driesen</author>
  -     public class BooleanConverter : IConvertFrom
  +     internal class BooleanConverter : IConvertFrom
        {
                #region Implementation of IConvertFrom
   
  
  
  
  1.6       +1 -1      
logging-log4net/src/Util/TypeConverters/EncodingConverter.cs
  
  Index: EncodingConverter.cs
  ===================================================================
  RCS file: 
/home/cvs/logging-log4net/src/Util/TypeConverters/EncodingConverter.cs,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- EncodingConverter.cs      17 Jan 2005 20:18:50 -0000      1.5
  +++ EncodingConverter.cs      7 Feb 2005 04:05:20 -0000       1.6
  @@ -34,7 +34,7 @@
        /// <seealso cref="IConvertTo"/>
        /// <author>Nicko Cadell</author>
        /// <author>Gert Driesen</author>
  -     public class EncodingConverter : IConvertFrom 
  +     internal class EncodingConverter : IConvertFrom 
        {
                #region Implementation of IConvertFrom
   
  
  
  
  1.2       +1 -1      
logging-log4net/src/Util/TypeConverters/IPAddressConverter.cs
  
  Index: IPAddressConverter.cs
  ===================================================================
  RCS file: 
/home/cvs/logging-log4net/src/Util/TypeConverters/IPAddressConverter.cs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IPAddressConverter.cs     4 Feb 2005 03:05:44 -0000       1.1
  +++ IPAddressConverter.cs     7 Feb 2005 04:05:20 -0000       1.2
  @@ -32,7 +32,7 @@
        /// <seealso cref="ConverterRegistry"/>
        /// <seealso cref="IConvertFrom"/>
        /// <author>Nicko Cadell</author>
  -     public class IPAddressConverter : IConvertFrom 
  +     internal class IPAddressConverter : IConvertFrom 
        {
                #region Implementation of IConvertFrom
   
  
  
  
  1.5       +1 -1      
logging-log4net/src/Util/TypeConverters/PatternLayoutConverter.cs
  
  Index: PatternLayoutConverter.cs
  ===================================================================
  RCS file: 
/home/cvs/logging-log4net/src/Util/TypeConverters/PatternLayoutConverter.cs,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternLayoutConverter.cs 17 Jan 2005 20:18:50 -0000      1.4
  +++ PatternLayoutConverter.cs 7 Feb 2005 04:05:20 -0000       1.5
  @@ -39,7 +39,7 @@
        /// <seealso cref="IConvertFrom"/>
        /// <seealso cref="IConvertTo"/>
        /// <author>Nicko Cadell</author>
  -     public class PatternLayoutConverter : IConvertFrom
  +     internal class PatternLayoutConverter : IConvertFrom
        {
                #region Implementation of IConvertFrom
   
  
  
  
  1.7       +1 -1      
logging-log4net/src/Util/TypeConverters/PatternStringConverter.cs
  
  Index: PatternStringConverter.cs
  ===================================================================
  RCS file: 
/home/cvs/logging-log4net/src/Util/TypeConverters/PatternStringConverter.cs,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- PatternStringConverter.cs 17 Jan 2005 20:18:50 -0000      1.6
  +++ PatternStringConverter.cs 7 Feb 2005 04:05:20 -0000       1.7
  @@ -40,7 +40,7 @@
        /// <seealso cref="IConvertFrom"/>
        /// <seealso cref="IConvertTo"/>
        /// <author>Nicko Cadell</author>
  -     public class PatternStringConverter : IConvertTo, IConvertFrom
  +     internal class PatternStringConverter : IConvertTo, IConvertFrom
        {
                #region Implementation of IConvertTo
   
  
  
  
  1.5       +1 -1      logging-log4net/src/Util/TypeConverters/TypeConverter.cs
  
  Index: TypeConverter.cs
  ===================================================================
  RCS file: /home/cvs/logging-log4net/src/Util/TypeConverters/TypeConverter.cs,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TypeConverter.cs  17 Jan 2005 20:18:50 -0000      1.4
  +++ TypeConverter.cs  7 Feb 2005 04:05:20 -0000       1.5
  @@ -33,7 +33,7 @@
        /// <seealso cref="IConvertFrom"/>
        /// <seealso cref="IConvertTo"/>
        /// <author>Nicko Cadell</author>
  -     public class TypeConverter : IConvertFrom 
  +     internal class TypeConverter : IConvertFrom 
        {
                #region Implementation of IConvertFrom
   
  
  
  

Reply via email to