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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2019-01-14 09:24:24 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2019-01-14 09:40:34 +0300
commit925915768a3b2e8ccceae722b29608dd3f62642c (patch)
treeafa5261203756e5a6f0ce67fe12f9402d5713a0e /main/src/addins/MonoDevelop.UnitTesting
parent892b83b3a5662b6f6c4255604306dea30fea3bbd (diff)
Fix a bunch more warnings all over
Diffstat (limited to 'main/src/addins/MonoDevelop.UnitTesting')
-rw-r--r--main/src/addins/MonoDevelop.UnitTesting/Services/AbstractResultsStore.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/addins/MonoDevelop.UnitTesting/Services/AbstractResultsStore.cs b/main/src/addins/MonoDevelop.UnitTesting/Services/AbstractResultsStore.cs
index 62b40b80b6..ba03343c15 100644
--- a/main/src/addins/MonoDevelop.UnitTesting/Services/AbstractResultsStore.cs
+++ b/main/src/addins/MonoDevelop.UnitTesting/Services/AbstractResultsStore.cs
@@ -403,11 +403,11 @@ namespace MonoDevelop.UnitTesting
[Serializable]
public class TestRecordCollection: CollectionBase
{
- public new TestRecord this [int n] {
+ public TestRecord this [int n] {
get { return (TestRecord) ((IList)this) [n]; }
}
- public new TestRecord this [string name] {
+ public TestRecord this [string name] {
get {
for (int n=0; n<List.Count; n++)
if (((TestRecord)List [n]).Name == name)
@@ -425,7 +425,7 @@ namespace MonoDevelop.UnitTesting
[Serializable]
public class UnitTestResultCollection: CollectionBase
{
- public new UnitTestResult this [int n] {
+ public UnitTestResult this [int n] {
get { return (UnitTestResult) ((IList)this) [n]; }
}