diff options
| author | Davide Polonio <poloniodavide@gmail.com> | 2020-05-06 17:21:21 +0200 |
|---|---|---|
| committer | Davide Polonio <poloniodavide@gmail.com> | 2020-05-06 17:25:41 +0200 |
| commit | 57cf19f058a12810b0d52dc43d84c1796697ce84 (patch) | |
| tree | fea7720caa7a7f12fd7b3aa4db70f20b390d4a02 /MediaBrowser.Model | |
| parent | 472efeeec4ddf5dbea1550aeea2173590b24953e (diff) | |
Fix variable declaration and follow sonarcloud suggestions
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Dto/PublicUserDto.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Dto/PublicUserDto.cs b/MediaBrowser.Model/Dto/PublicUserDto.cs index d5fd431eb6..d4eec8b9df 100644 --- a/MediaBrowser.Model/Dto/PublicUserDto.cs +++ b/MediaBrowser.Model/Dto/PublicUserDto.cs @@ -1,6 +1,4 @@ using System; -using MediaBrowser.Model.Configuration; -using MediaBrowser.Model.Users; namespace MediaBrowser.Model.Dto { @@ -29,9 +27,10 @@ namespace MediaBrowser.Model.Dto /// <summary> /// Gets or sets a value indicating whether this instance has configured password. + /// Note that in this case this method should not be here, but it is necessary when changeing password at the + /// first login. /// </summary> /// <value><c>true</c> if this instance has configured password; otherwise, <c>false</c>.</value> - // FIXME this shouldn't be here, but it's necessary when changing password at the first login public bool HasConfiguredPassword { get; set; } /// <summary> |
