Merge pull request #2781 from alexanderkyte/inflated_method_header_leak
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / FormViewUpdatedEventArgs.cs
index 543d10d24e84f43c4f24d5f781cbfe12700a79c3..34a140d50d166e503d9725233bbe145c60db22e5 100644 (file)
@@ -4,7 +4,7 @@
 // Authors:
 //   Sanjay Gupta (gsanjay@novell.com)
 //
-// (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2010 Novell, Inc (http://www.novell.com)
 //
 
 //
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.Collections.Specialized;
 
 namespace System.Web.UI.WebControls
 {
        public class FormViewUpdatedEventArgs : EventArgs
        {
-               private int rowsAffected;
-               private Exception e;
-               private bool exceptionHandled;
-               private bool keepEditMode;
-               private IOrderedDictionary keys;
-               private IOrderedDictionary oldValues;
-               private IOrderedDictionary newValues;
+               int rowsAffected;
+               Exception e;
+               bool exceptionHandled;
+               bool keepEditMode;
+               IOrderedDictionary keys;
+               IOrderedDictionary oldValues;
+               IOrderedDictionary newValues;
                
                public FormViewUpdatedEventArgs (int affectedRows, Exception e)
                {
@@ -53,7 +51,7 @@ namespace System.Web.UI.WebControls
                }
                
                internal FormViewUpdatedEventArgs (int affectedRows, Exception e, IOrderedDictionary keys, IOrderedDictionary oldValues, IOrderedDictionary newValues)
-               : this (affectedRows, e)
+                       : this (affectedRows, e)
                {
                        this.keys = keys;
                        this.oldValues = oldValues;
@@ -92,4 +90,3 @@ namespace System.Web.UI.WebControls
        }
 }
 
-#endif