You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-dev@logging.apache.org by ni...@apache.org on 2006/03/28 11:22:44 UTC

svn commit: r389447 - /logging/log4net/trunk/src/Appender/MemoryAppender.cs

Author: nicko
Date: Tue Mar 28 01:22:40 2006
New Revision: 389447

URL: http://svn.apache.org/viewcvs?rev=389447&view=rev
Log:
Fix for LOG4NET-74. Made member variables protected.

Modified:
    logging/log4net/trunk/src/Appender/MemoryAppender.cs

Modified: logging/log4net/trunk/src/Appender/MemoryAppender.cs
URL: http://svn.apache.org/viewcvs/logging/log4net/trunk/src/Appender/MemoryAppender.cs?rev=389447&r1=389446&r2=389447&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/MemoryAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/MemoryAppender.cs Tue Mar 28 01:22:40 2006
@@ -1,6 +1,6 @@
 #region Copyright & License
 //
-// Copyright 2001-2005 The Apache Software Foundation
+// Copyright 2001-2006 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -113,7 +113,7 @@
 		}
 
 		/// <summary>
-		/// Gets or sets a the fields that will be fixed in the event
+		/// Gets or sets the fields that will be fixed in the event
 		/// </summary>
 		/// <remarks>
 		/// <para>
@@ -166,12 +166,12 @@
 
 		#endregion Public Instance Methods
 
-		#region Private Instance Fields
+		#region Protected Instance Fields
 
 		/// <summary>
 		/// The list of events that have been appended.
 		/// </summary>
-		private ArrayList m_eventsList;
+		protected ArrayList m_eventsList;
 
 		/// <summary>
 		/// Value indicating which fields in the event should be fixed
@@ -179,8 +179,8 @@
 		/// <remarks>
 		/// By default all fields are fixed
 		/// </remarks>
-		private FixFlags m_fixFlags = FixFlags.All;
+		protected FixFlags m_fixFlags = FixFlags.All;
 
-		#endregion Private Instance Fields
+		#endregion Protected Instance Fields
 	}
 }