Merge pull request #757 from mlintner/master
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / FormViewInsertedEventArgs.cs
index 670dc9bc6979aa1338502373a3fa7bbc132434df..b16a49b4abb579dba29134cb0bebf27896c84952 100644 (file)
@@ -4,7 +4,7 @@
 // Authors:
 //   Sanjay Gupta (gsanjay@novell.com)
 //
-// (C) 2004 Novell, Inc (http://www.novell.com)
+// (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 FormViewInsertedEventArgs : EventArgs
        {
-               private int rowsAffected;
-               private Exception e;
-               private bool exceptionHandled;
-               private bool keepInsertedMode;
-               private IOrderedDictionary values;
+               int rowsAffected;
+               Exception e;
+               bool exceptionHandled;
+               bool keepInsertedMode;
+               IOrderedDictionary values;
                
                public FormViewInsertedEventArgs (int affectedRows, Exception e)
                {
@@ -78,4 +76,3 @@ namespace System.Web.UI.WebControls
        }
 }
 
-#endif