From 5e9291f71a1cb2d7084a68c3361b7c345b26fbc6 Mon Sep 17 00:00:00 2001 From: sunyaozu Date: Thu, 7 Jul 2022 13:01:15 +0800 Subject: [PATCH] remove static of getLocationName method Signed-off-by: sunyaozu --- api/@ohos.i18n.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/@ohos.i18n.d.ts b/api/@ohos.i18n.d.ts index 3693f83823..d7dafe4aed 100644 --- a/api/@ohos.i18n.d.ts +++ b/api/@ohos.i18n.d.ts @@ -246,7 +246,7 @@ export class PhoneNumberFormat { * @return Returns a string represents phone number's location. * @since 9 */ - static getLocationName(number: string, locale: string): string; + getLocationName(number: string, locale: string): string; } /** -- Gitee