From: jkjo92 Date: Tue, 10 Oct 2017 09:54:46 +0000 (+0900) Subject: fix xml build warnings X-Git-Tag: preview1-00279~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F91%2F154491%2F1;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git fix xml build warnings Change-Id: I564081cd060c1f4229ecdd071b023ccf32a96b67 Signed-off-by: jkjo92 --- diff --git a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/AuthenticatorInformation.cs b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/AuthenticatorInformation.cs index 220b131..7aa4138 100755 --- a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/AuthenticatorInformation.cs +++ b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/AuthenticatorInformation.cs @@ -25,7 +25,7 @@ namespace Tizen.Account.FidoClient /// 3 /// /// - /// IEnumerable authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync(); + /// IEnumerable<AuthenticatorInformation> authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync(); /// foreach (AuthenticatorInformation authInfo in authInfos) /// { /// string aaid = authInfo.Aaid; diff --git a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs index bed73d4..2f13307 100755 --- a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs +++ b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs @@ -39,7 +39,7 @@ namespace Tizen.Account.FidoClient /// /// - /// IEnumerable authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync(); + /// IEnumerable<AuthenticatorInformation> authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync(); /// foreach (AuthenticatorInformation authInfo in authInfos) /// { /// string aaid = authInfo.Aaid;