X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web%2FTraceContextEventArgs.cs;h=f236fd47ee1c2f362a939a045e48c18991605ee6;hb=4dcbe7950b18e271fdbc6f416b35b5d207b3a1f4;hp=dc7ba83d29638e2535158c8f8503a645fe252139;hpb=538d3bb80572334c18ae117ea7703406a4a22872;p=mono.git diff --git a/mcs/class/System.Web/System.Web/TraceContextEventArgs.cs b/mcs/class/System.Web/System.Web/TraceContextEventArgs.cs index dc7ba83d296..f236fd47ee1 100644 --- a/mcs/class/System.Web/System.Web/TraceContextEventArgs.cs +++ b/mcs/class/System.Web/System.Web/TraceContextEventArgs.cs @@ -4,7 +4,7 @@ // Author: // Sebastien Pouliot // -// Copyright (C) 2005 Novell, Inc (http://www.novell.com) +// Copyright (C) 2005-2009 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -26,8 +26,6 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if NET_2_0 - using System.Collections; using System.Security.Permissions; @@ -37,7 +35,7 @@ namespace System.Web { [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] public sealed class TraceContextEventArgs : EventArgs { - private ICollection trace_records; + ICollection trace_records; public TraceContextEventArgs (ICollection records) { @@ -49,5 +47,3 @@ namespace System.Web { } } } - -#endif