Merge pull request #2020 from tomjepp/master
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / DetailsViewInsertedEventArgs.cs
index 277e2050bf696dfddd8453a6bcb4354bc30741ee..14a319d444abbbdbf36310ded5ad15da15754abb 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 DetailsViewInsertedEventArgs : 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 DetailsViewInsertedEventArgs (int affectedRows, Exception e)
                {
@@ -79,4 +77,3 @@ namespace System.Web.UI.WebControls
        }
 }
 
-#endif