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:
authorMiguel de Icaza <miguel@gnome.org>2006-11-15 00:30:15 +0300
committerMiguel de Icaza <miguel@gnome.org>2006-11-15 00:30:15 +0300
commit1599c6f6106d1f22676de4fe2c8bce740fe7a81a (patch)
tree85db99d144b315d6e64191554cdc985ec74870c1 /mcs/class/corlib/System/AppDomain.cs
parent3653104cbab091030d80df8cbd1b2665f9a95cf7 (diff)
2006-11-14 Miguel de Icaza <miguel@novell.com>
* Array.cs: TODOs will from now on be used to flag information that will be developer-visible, not to flag internal information that none of us reads or bothers about. For those, use "FIXME" strings in the source code instead. * AppDomain.cs: Update to be more useful. svn path=/trunk/mcs/; revision=67878
Diffstat (limited to 'mcs/class/corlib/System/AppDomain.cs')
-rw-r--r--mcs/class/corlib/System/AppDomain.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/corlib/System/AppDomain.cs b/mcs/class/corlib/System/AppDomain.cs
index af16ba186c1..7961c11c800 100644
--- a/mcs/class/corlib/System/AppDomain.cs
+++ b/mcs/class/corlib/System/AppDomain.cs
@@ -706,7 +706,7 @@ namespace System {
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private static extern AppDomain createDomain (string friendlyName, AppDomainSetup info);
- [MonoTODO ("allow setup in the other domain")]
+ [MonoTODO ("Currently it does not allow the setup in the other domain")]
[SecurityPermission (SecurityAction.Demand, ControlAppDomain = true)]
public static AppDomain CreateDomain (string friendlyName, Evidence securityInfo, AppDomainSetup info)
{
@@ -1015,7 +1015,7 @@ namespace System {
// methods
- [MonoTODO ("what's the policy affecting names ?")]
+ [MonoTODO ("This routine only returns the parameter currently")]
[ComVisible (false)]
public string ApplyPolicy (string assemblyName)
{