From a44479d0a02ba62fcda3648edd7f8581812b8f52 Mon Sep 17 00:00:00 2001 From: Ayaz Hafiz Date: Fri, 10 Jan 2020 15:33:28 -0800 Subject: [PATCH] style(common): remove unnecessary private annotation (#34734) The `@private` annotation on a function upsets tsc, and appears unnecessary for non-exported functions. PR Close #34734 --- packages/common/upgrade/src/params.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/common/upgrade/src/params.ts b/packages/common/upgrade/src/params.ts index 8763964b57..ac9fe5f7d6 100644 --- a/packages/common/upgrade/src/params.ts +++ b/packages/common/upgrade/src/params.ts @@ -223,7 +223,6 @@ function _stripIndexHtml(url: string): string { /** * Tries to decode the URI component without throwing an exception. * - * @private * @param str value potential URI component to check. * @returns the decoded URI if it can be decoded or else `undefined`. */