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:
authorKonstantin Triger <kostat@mono-cvs.ximian.com>2005-05-16 14:14:14 +0400
committerKonstantin Triger <kostat@mono-cvs.ximian.com>2005-05-16 14:14:14 +0400
commitc41b07156f2ff6caa9dfc9db3b061205ef13dd8b (patch)
treeeba41270dc914921fcf1d20942dee77361e1022a /mcs/class/System.Data/System.Data.Common
parentbf664d123fb54a9e65be0f9a6e9980845263953a (diff)
fixing net_2_0 compilation
svn path=/trunk/mcs/; revision=44554
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common')
-rw-r--r--mcs/class/System.Data/System.Data.Common/RecordCache.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/RecordCache.cs b/mcs/class/System.Data/System.Data.Common/RecordCache.cs
index 08a02f55124..cd8fc0d7193 100644
--- a/mcs/class/System.Data/System.Data.Common/RecordCache.cs
+++ b/mcs/class/System.Data/System.Data.Common/RecordCache.cs
@@ -161,20 +161,6 @@ namespace System.Data.Common
}
}
- /// <summary>
- /// Compares two records in the given data table. The numbers are the offset
- /// into the container tables.
- /// </summary>
- internal static bool CompareRecords (DataTable table, int x, int y)
- {
- foreach (DataColumn dc in table.Columns) {
- if (dc.DataContainer.CompareValues (x, y) != 0)
- return false;
- }
- return true;
- }
-
-
#endregion // Methods
}
}