This is an automated email from the ASF dual-hosted git repository. michaelpearce pushed a commit to branch michaelandrepearce-patch-1 in repository https://gitbox.apache.org/repos/asf/activemq-nms-openwire.git
commit da1f85886e495037a528d32e1aa71ab1c9d19ecd Author: Michael André Pearce <[email protected]> AuthorDate: Wed Jun 29 09:32:32 2022 +0100 AMQNET-572 Fix missing code headers Fix missing code header with introduced class in original AMQNET-572 work. --- src/Transport/Tcp/SslContext.cs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/Transport/Tcp/SslContext.cs b/src/Transport/Tcp/SslContext.cs index db5b723..fd2119e 100644 --- a/src/Transport/Tcp/SslContext.cs +++ b/src/Transport/Tcp/SslContext.cs @@ -1,4 +1,21 @@ -using System; +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; using System.Collections.Generic; namespace Apache.NMS.ActiveMQ.Transport.Tcp {
