Skip to content

Commit

Permalink
fix comment warning
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkZuber committed Apr 29, 2019
1 parent 5db620e commit 49d8b5e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Microsoft.Identity.Client/PublicClientApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@

namespace Microsoft.Identity.Client
{
#if !DESKTOP && !NET_CORE
#pragma warning disable CS1574 // XML comment has cref attribute that could not be resolved
#endif
/// <summary>
/// Class to be used to acquire tokens in desktop or mobile applications (Desktop / UWP / Xamarin.iOS / Xamarin.Android).
/// public client applications are not trusted to safely keep application secrets, and therefore they only access Web APIs in the name of the user only.
Expand All @@ -26,7 +24,6 @@ namespace Microsoft.Identity.Client
/// </list>
/// </remarks>
public sealed partial class PublicClientApplication : ClientApplicationBase, IPublicClientApplication, IByRefreshToken
#pragma warning restore CS1574 // XML comment has cref attribute that could not be resolved
{
internal PublicClientApplication(ApplicationConfiguration configuration)
: base(configuration)
Expand Down Expand Up @@ -74,6 +71,7 @@ public AcquireTokenInteractiveParameterBuilder AcquireTokenInteractive(
ClientExecutorFactory.CreatePublicClientExecutor(this),
scopes);
}
#pragma warning restore CS1574 // XML comment has cref attribute that could not be resolved

/// <summary>
/// Acquires a security token on a device without a Web browser, by letting the user authenticate on
Expand Down

0 comments on commit 49d8b5e

Please sign in to comment.