Author: anagappan
Date: 2007-05-30 06:57:48 -0400 (Wed, 30 May 2007)
New Revision: 78187

Modified:
   trunk/mcs/class/System.Data/Test/ProviderTests/Common/ChangeLog
   trunk/mcs/class/System.Data/Test/ProviderTests/Common/DBHelper.cs
Log:
2007-05-30  Nagappan A  <[EMAIL PROTECTED]>

        * DBHelper.cs: Fixed warnings of unused variables.



Modified: trunk/mcs/class/System.Data/Test/ProviderTests/Common/ChangeLog
===================================================================
--- trunk/mcs/class/System.Data/Test/ProviderTests/Common/ChangeLog     
2007-05-30 10:52:37 UTC (rev 78186)
+++ trunk/mcs/class/System.Data/Test/ProviderTests/Common/ChangeLog     
2007-05-30 10:57:48 UTC (rev 78187)
@@ -1,3 +1,7 @@
+2007-05-30  Nagappan A  <[EMAIL PROTECTED]>
+
+       * DBHelper.cs: Fixed warnings of unused variables.
+
 2007-03-09  Andreia Gaita  <[EMAIL PROTECTED]>
 
        * ConnectionManager.cs: small fix to close the connection if we 

Modified: trunk/mcs/class/System.Data/Test/ProviderTests/Common/DBHelper.cs
===================================================================
--- trunk/mcs/class/System.Data/Test/ProviderTests/Common/DBHelper.cs   
2007-05-30 10:52:37 UTC (rev 78186)
+++ trunk/mcs/class/System.Data/Test/ProviderTests/Common/DBHelper.cs   
2007-05-30 10:57:48 UTC (rev 78187)
@@ -51,7 +51,7 @@
                        int result = -1;
                        try {
                                result = command.ExecuteNonQuery ();
-                       } catch (Exception e) {
+                       } catch {
                                return -2;
                        }
                        return result;
@@ -65,7 +65,7 @@
                        int result = -1;
                        try {
                                result = command.ExecuteNonQuery ();
-                       } catch (Exception e) {
+                       } catch {
                                return -2;
                        }
                        return result;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to