Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiers Haken <piers@mono-cvs.ximian.com>2002-04-01 10:07:43 +0400
committerPiers Haken <piers@mono-cvs.ximian.com>2002-04-01 10:07:43 +0400
commit84187bf9a6534f03d832568b643a273a05312807 (patch)
treeb19981f80416bcbc1d7461c9d7b90bb6472d5815 /mcs/class/System/System.Diagnostics/TraceListenerCollection.cs
parent5fd40ea80b9115b6417f7d50184bd775d9d065b5 (diff)
fixed member accessibility to match MS (corcompare).
svn path=/trunk/mcs/; revision=3531
Diffstat (limited to 'mcs/class/System/System.Diagnostics/TraceListenerCollection.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/TraceListenerCollection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Diagnostics/TraceListenerCollection.cs b/mcs/class/System/System.Diagnostics/TraceListenerCollection.cs
index 89eb138e898..8dd0c9a1b16 100644
--- a/mcs/class/System/System.Diagnostics/TraceListenerCollection.cs
+++ b/mcs/class/System/System.Diagnostics/TraceListenerCollection.cs
@@ -25,7 +25,7 @@ namespace System.Diagnostics {
private ArrayList listeners = new ArrayList ();
- public TraceListenerCollection ()
+ internal TraceListenerCollection ()
{
Add (new DefaultTraceListener ());
}