Fix RCS1036: Remove redundant empty line (#44631)
authorxtqqczze <45661989+xtqqczze@users.noreply.github.com>
Tue, 17 Nov 2020 03:54:49 +0000 (03:54 +0000)
committerGitHub <noreply@github.com>
Tue, 17 Nov 2020 03:54:49 +0000 (19:54 -0800)
Sync with PowerShell/PowerShell#13404

src/libraries/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/ComInterop/ComMethodDesc.cs
src/libraries/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/ComInterop/ComTypeDesc.cs
src/libraries/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/ComInterop/IDispatchComObject.cs
src/libraries/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/ComInterop/UnknownArgBuilder.cs
src/libraries/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/ComInterop/VarEnumSelector.cs

index 5a70007..5b3a749 100644 (file)
@@ -31,7 +31,6 @@ namespace Microsoft.CSharp.RuntimeBinder.ComInterop
         internal ComMethodDesc(ITypeInfo typeInfo, FUNCDESC funcDesc)
             : this(funcDesc.memid)
         {
-
             _invokeKind = funcDesc.invkind;
 
             string[] rgNames = new string[1 + funcDesc.cParams];
index 0abdd7e..bbe1393 100644 (file)
@@ -25,7 +25,6 @@ namespace Microsoft.CSharp.RuntimeBinder.ComInterop
             TypeLib = typeLibDesc;
         }
 
-
         internal static ComTypeDesc FromITypeInfo(ITypeInfo typeInfo, TYPEATTR typeAttr)
         {
             switch (typeAttr.typekind)
index 1c34b6e..6a7a297 100644 (file)
@@ -73,7 +73,6 @@ namespace Microsoft.CSharp.RuntimeBinder.ComInterop
     /// just find and invoke the multicast delegate corresponding to the invoked
     /// dispid.
     ///  </summary>
-
     internal sealed class IDispatchComObject : ComObject, IDynamicMetaObjectProvider
     {
         private ComTypeDesc _comTypeDesc;
index dfe0f46..a587e20 100644 (file)
@@ -48,7 +48,6 @@ namespace Microsoft.CSharp.RuntimeBinder.ComInterop
             );
         }
 
-
         internal override Expression UnmarshalFromRef(Expression value)
         {
             // value == IntPtr.Zero ? null : Marshal.GetObjectForIUnknown(value);
index d8318cd..435e94f 100644 (file)
@@ -187,7 +187,6 @@ namespace Microsoft.CSharp.RuntimeBinder.ComInterop
                 typeNames += typeName;
             }
 
-
             throw Error.AmbiguousConversion(argumentType.Name, typeNames);
         }