Skip to content

Commit 47b3c98

Browse files
committed
chore: docstring and license update
1 parent 4dbcce0 commit 47b3c98

File tree

1 file changed

+3
-14
lines changed
  • smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/endpointsV2

1 file changed

+3
-14
lines changed

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/endpointsV2/OmitEndpointParams.java

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,15 @@
11
/*
2-
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License").
5-
* You may not use this file except in compliance with the License.
6-
* A copy of the License is located at
7-
*
8-
* http://aws.amazon.com/apache2.0
9-
*
10-
* or in the "license" file accompanying this file. This file is distributed
11-
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12-
* express or implied. See the License for the specific language governing
13-
* permissions and limitations under the License.
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
144
*/
155

166
package software.amazon.smithy.typescript.codegen.endpointsV2;
17-
187
import java.util.Collections;
198
import java.util.HashSet;
209
import java.util.Set;
2110

2211
/**
23-
* Manages a collection of endpoint parameter names to be omitted from a specific interface.
12+
* Manages a collection of endpoint parameter names to be omitted from a specific interface. While this could be extensible in the future, as of right now, this collection is maintaining endpoint parameter names to be omitted from the `ClientInputEndpointParameters` interface.
2413
*/
2514
public final class OmitEndpointParams {
2615
private static final Set<String> OMITTED_PARAMS = new HashSet<>();

0 commit comments

Comments
 (0)