diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-08-26 20:33:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-26 20:33:47 -0400 |
| commit | 8f4540ed74922407ac791af6180dd35db77abe53 (patch) | |
| tree | 4753cf834fc0c077beaa88d7e84b11f45aea1423 /MediaBrowser.Controller/Security/IAuthenticationRepository.cs | |
| parent | 7434dae5d2069d9bcb05049099832790b6cafc25 (diff) | |
| parent | 28297ee620897ef10daedb6acce2957de83d6238 (diff) | |
Merge pull request #2845 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/Security/IAuthenticationRepository.cs')
| -rw-r--r-- | MediaBrowser.Controller/Security/IAuthenticationRepository.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Security/IAuthenticationRepository.cs b/MediaBrowser.Controller/Security/IAuthenticationRepository.cs index 219b07028..f80ee6e7f 100644 --- a/MediaBrowser.Controller/Security/IAuthenticationRepository.cs +++ b/MediaBrowser.Controller/Security/IAuthenticationRepository.cs @@ -1,6 +1,5 @@ using MediaBrowser.Model.Querying; using System.Threading; -using System.Threading.Tasks; namespace MediaBrowser.Controller.Security { @@ -12,7 +11,7 @@ namespace MediaBrowser.Controller.Security /// <param name="info">The information.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> - Task Create(AuthenticationInfo info, CancellationToken cancellationToken); + void Create(AuthenticationInfo info, CancellationToken cancellationToken); /// <summary> /// Updates the specified information. @@ -20,7 +19,7 @@ namespace MediaBrowser.Controller.Security /// <param name="info">The information.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> - Task Update(AuthenticationInfo info, CancellationToken cancellationToken); + void Update(AuthenticationInfo info, CancellationToken cancellationToken); /// <summary> /// Gets the specified query. |
