Skip to content

Commit 3cea6f0

Browse files
committed
Fixed formatting in copy constructor
1 parent 202e042 commit 3cea6f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/System.Private.ServiceModel/src/System/ServiceModel/Channels/SecurityBindingElement.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,16 @@ internal SecurityBindingElement(SecurityBindingElement elementToBeCloned)
6565
{
6666
_operationSupportingTokenParameters[key] = elementToBeCloned._operationSupportingTokenParameters[key].Clone();
6767
}
68+
6869
_optionalOperationSupportingTokenParameters = new Dictionary<string, SupportingTokenParameters>();
6970
foreach (string key in elementToBeCloned._optionalOperationSupportingTokenParameters.Keys)
7071
{
7172
_optionalOperationSupportingTokenParameters[key] = elementToBeCloned._optionalOperationSupportingTokenParameters[key].Clone();
7273
}
74+
7375
LocalClientSettings = elementToBeCloned.LocalClientSettings.Clone();
7476
MaxReceivedMessageSize = elementToBeCloned.MaxReceivedMessageSize;
7577
ReaderQuotas = elementToBeCloned.ReaderQuotas;
76-
7778
EnableUnsecuredResponse = elementToBeCloned.EnableUnsecuredResponse;
7879
}
7980

0 commit comments

Comments
 (0)