Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.OleDb.jvm/OleDbDataReader.cs')
-rw-r--r--mcs/class/System.Data/System.Data.OleDb.jvm/OleDbDataReader.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.Data/System.Data.OleDb.jvm/OleDbDataReader.cs b/mcs/class/System.Data/System.Data.OleDb.jvm/OleDbDataReader.cs
index 24d9dbebc40..8cccc1b6e29 100644
--- a/mcs/class/System.Data/System.Data.OleDb.jvm/OleDbDataReader.cs
+++ b/mcs/class/System.Data/System.Data.OleDb.jvm/OleDbDataReader.cs
@@ -52,12 +52,12 @@ namespace System.Data.OleDb
#region Methods
- protected sealed override SystemException CreateException(string message, SQLException e)
+ protected override SystemException CreateException(string message, SQLException e)
{
return new OleDbException(message,e, (OleDbConnection)_command.Connection);
}
- protected sealed override SystemException CreateException(java.io.IOException e)
+ protected override SystemException CreateException(java.io.IOException e)
{
return new OleDbException(e, (OleDbConnection)_command.Connection);
}