dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection AmbiguousMa


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection AmbiguousMatchException.cs,1.4,1.5 ClrParameter.cs,1.1,1.2 InvalidFilterCriteriaException.cs,1.2,1.3 ParameterInfo.cs,1.4,1.5 TargetException.cs,1.4,1.5 TargetInvocationException.cs,1.4,1.5 TargetParameterCountException.cs,1.4,1.5
Date: Sat, 05 Apr 2003 01:58:15 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection
In directory subversions:/tmp/cvs-serv11641/runtime/System/Reflection

Modified Files:
        AmbiguousMatchException.cs ClrParameter.cs 
        InvalidFilterCriteriaException.cs ParameterInfo.cs 
        TargetException.cs TargetInvocationException.cs 
        TargetParameterCountException.cs 
Log Message:


Change instances of "protected internal" into "internal", because
"protected internal" doesn't actually do what I thought it did.


Index: AmbiguousMatchException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/AmbiguousMatchException.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** AmbiguousMatchException.cs  5 Apr 2003 00:35:16 -0000       1.4
--- AmbiguousMatchException.cs  5 Apr 2003 06:58:12 -0000       1.5
***************
*** 37,41 ****
  
        // Get the default message to use for this exception type.
!       protected internal override String MessageDefault
                        {
                                get
--- 37,41 ----
  
        // Get the default message to use for this exception type.
!       internal override String MessageDefault
                        {
                                get
***************
*** 46,50 ****
  
        // Get the default HResult value for this type of exception.
!       protected internal override uint HResultDefault
                        {
                                get
--- 46,50 ----
  
        // Get the default HResult value for this type of exception.
!       internal override uint HResultDefault
                        {
                                get

Index: ClrParameter.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/ClrParameter.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ClrParameter.cs     2 Dec 2001 09:29:50 -0000       1.1
--- ClrParameter.cs     5 Apr 2003 06:58:12 -0000       1.2
***************
*** 96,109 ****
        // Internal interface used when ICustomAttributeProvider
        // is declared as private in ParameterInfo.
!       protected internal override Object[] ClrGetCustomAttributes(bool 
inherit)
                        {
                                return ClrHelpers.GetCustomAttributes(this, 
inherit);
                        }
!       protected internal override Object[] ClrGetCustomAttributes
                                        (Type type, bool inherit)
                        {
                                return ClrHelpers.GetCustomAttributes(this, 
type, inherit);
                        }
!       protected internal override bool ClrIsDefined(Type type, bool inherit)
                        {
                                return ClrHelpers.IsDefined(this, type, 
inherit);
--- 96,109 ----
        // Internal interface used when ICustomAttributeProvider
        // is declared as private in ParameterInfo.
!       internal override Object[] ClrGetCustomAttributes(bool inherit)
                        {
                                return ClrHelpers.GetCustomAttributes(this, 
inherit);
                        }
!       internal override Object[] ClrGetCustomAttributes
                                        (Type type, bool inherit)
                        {
                                return ClrHelpers.GetCustomAttributes(this, 
type, inherit);
                        }
!       internal override bool ClrIsDefined(Type type, bool inherit)
                        {
                                return ClrHelpers.IsDefined(this, type, 
inherit);

Index: InvalidFilterCriteriaException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/InvalidFilterCriteriaException.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** InvalidFilterCriteriaException.cs   5 Apr 2003 00:35:16 -0000       1.2
--- InvalidFilterCriteriaException.cs   5 Apr 2003 06:58:12 -0000       1.3
***************
*** 44,48 ****
  
        // Get the default message to use for this exception type.
!       protected internal override String MessageDefault
                        {
                                get
--- 44,48 ----
  
        // Get the default message to use for this exception type.
!       internal override String MessageDefault
                        {
                                get
***************
*** 53,57 ****
  
        // Get the default HResult value for this type of exception.
!       protected internal override uint HResultDefault
                        {
                                get
--- 53,57 ----
  
        // Get the default HResult value for this type of exception.
!       internal override uint HResultDefault
                        {
                                get

Index: ParameterInfo.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/ParameterInfo.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** ParameterInfo.cs    2 Dec 2001 09:29:50 -0000       1.4
--- ParameterInfo.cs    5 Apr 2003 06:58:12 -0000       1.5
***************
*** 114,127 ****
        // ClrParameter when the ICustomAttributeProvider interface
        // is declared as private.
!       protected internal virtual Object[] ClrGetCustomAttributes(bool inherit)
                        {
                                return null;
                        }
!       protected internal virtual Object[] ClrGetCustomAttributes
                                        (Type type, bool inherit)
                        {
                                return null;
                        }
!       protected internal virtual bool ClrIsDefined(Type type, bool inherit)
                        {
                                return false;
--- 114,127 ----
        // ClrParameter when the ICustomAttributeProvider interface
        // is declared as private.
!       internal virtual Object[] ClrGetCustomAttributes(bool inherit)
                        {
                                return null;
                        }
!       internal virtual Object[] ClrGetCustomAttributes
                                        (Type type, bool inherit)
                        {
                                return null;
                        }
!       internal virtual bool ClrIsDefined(Type type, bool inherit)
                        {
                                return false;

Index: TargetException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/TargetException.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** TargetException.cs  5 Apr 2003 00:35:16 -0000       1.4
--- TargetException.cs  5 Apr 2003 06:58:12 -0000       1.5
***************
*** 37,41 ****
  
        // Get the default message to use for this exception type.
!       protected internal override String MessageDefault
                        {
                                get
--- 37,41 ----
  
        // Get the default message to use for this exception type.
!       internal override String MessageDefault
                        {
                                get
***************
*** 46,50 ****
  
        // Get the default HResult value for this type of exception.
!       protected internal override uint HResultDefault
                        {
                                get
--- 46,50 ----
  
        // Get the default HResult value for this type of exception.
!       internal override uint HResultDefault
                        {
                                get

Index: TargetInvocationException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/TargetInvocationException.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** TargetInvocationException.cs        5 Apr 2003 00:35:16 -0000       1.4
--- TargetInvocationException.cs        5 Apr 2003 06:58:12 -0000       1.5
***************
*** 40,44 ****
  
        // Get the default message to use for this exception type.
!       protected internal override String MessageDefault
                        {
                                get
--- 40,44 ----
  
        // Get the default message to use for this exception type.
!       internal override String MessageDefault
                        {
                                get
***************
*** 49,53 ****
  
        // Get the default HResult value for this type of exception.
!       protected internal override uint HResultDefault
                        {
                                get
--- 49,53 ----
  
        // Get the default HResult value for this type of exception.
!       internal override uint HResultDefault
                        {
                                get

Index: TargetParameterCountException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/TargetParameterCountException.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** TargetParameterCountException.cs    5 Apr 2003 00:35:16 -0000       1.4
--- TargetParameterCountException.cs    5 Apr 2003 06:58:12 -0000       1.5
***************
*** 37,41 ****
  
        // Get the default message to use for this exception type.
!       protected internal override String MessageDefault
                        {
                                get
--- 37,41 ----
  
        // Get the default message to use for this exception type.
!       internal override String MessageDefault
                        {
                                get
***************
*** 46,50 ****
  
        // Get the default HResult value for this type of exception.
!       protected internal override uint HResultDefault
                        {
                                get
--- 46,50 ----
  
        // Get the default HResult value for this type of exception.
!       internal override uint HResultDefault
                        {
                                get





reply via email to

[Prev in Thread] Current Thread [Next in Thread]