From a707a09f390bf4c52917113d1fe3a904831b395b Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Mon, 3 Jan 2022 14:10:05 +0000 Subject: [PATCH] chore(runtimeConfig): remove unsupported vesion deprecation warning --- .../amazon/smithy/typescript/codegen/runtimeConfig.ts.template | 2 -- 1 file changed, 2 deletions(-) diff --git a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/runtimeConfig.ts.template b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/runtimeConfig.ts.template index fbe87ef73b6..532d4ca44a3 100644 --- a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/runtimeConfig.ts.template +++ b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/runtimeConfig.ts.template @@ -1,12 +1,10 @@ import { ${clientConfigName} } from "${clientModuleName}"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client"; /** * @internal */ export const getRuntimeConfig = (config: ${clientConfigName}) => { - emitWarningIfUnsupportedVersion(process.version); const clientSharedValues = getSharedRuntimeConfig(config); return { ...clientSharedValues,