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
path: root/mcs
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2009-08-07 14:55:45 +0400
committerMarek Safar <marek.safar@gmail.com>2009-08-07 14:55:45 +0400
commit5945ed28b327939b5246f05e5239e24b9f2ef814 (patch)
tree808cd3c5d20499443bed5c393071f47228083457 /mcs
parentf541e61ee6a74c3068deddff052770be7c929107 (diff)
2009-08-07 Marek Safar <marek.safar@gmail.com>
* AppDomain.cs: IsHomogenous always returns true for now. svn path=/trunk/mcs/; revision=139563
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/System/AppDomain.cs2
-rw-r--r--mcs/class/corlib/System/ChangeLog4
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/corlib/System/AppDomain.cs b/mcs/class/corlib/System/AppDomain.cs
index 48fb5811d00..f9c1845dfa4 100644
--- a/mcs/class/corlib/System/AppDomain.cs
+++ b/mcs/class/corlib/System/AppDomain.cs
@@ -1271,7 +1271,7 @@ namespace System {
#if NET_4_0
[MonoTODO]
public bool IsHomogenous {
- get { return false; }
+ get { return true; }
}
#endif
diff --git a/mcs/class/corlib/System/ChangeLog b/mcs/class/corlib/System/ChangeLog
index d567ab58913..c26c3f3a4e0 100644
--- a/mcs/class/corlib/System/ChangeLog
+++ b/mcs/class/corlib/System/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-07 Marek Safar <marek.safar@gmail.com>
+
+ * AppDomain.cs: IsHomogenous always returns true for now.
+
2009-08-06 Rodrigo Kumpera <rkumpera@novell.com>
* Environment.cs: Bump corlib version.