Skip to content

Commit

Permalink
fixed comments in ImapEngine.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Aug 26, 2023
1 parent 5f0cca3 commit a4d4437
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions MailKit/Net/Imap/ImapEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2773,7 +2773,6 @@ public void QueueCommand (ImapCommand ic)
/// Queries the capabilities.
/// </summary>
/// <returns>The command result.</returns>
/// <param name="doAsync">Whether or not asynchronous IO methods should be used.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public ImapCommandResponse QueryCapabilities (CancellationToken cancellationToken)
{
Expand All @@ -2786,7 +2785,6 @@ public ImapCommandResponse QueryCapabilities (CancellationToken cancellationToke
/// Queries the capabilities.
/// </summary>
/// <returns>The command result.</returns>
/// <param name="doAsync">Whether or not asynchronous IO methods should be used.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<ImapCommandResponse> QueryCapabilitiesAsync (CancellationToken cancellationToken)
{
Expand Down Expand Up @@ -2912,7 +2910,6 @@ internal void LookupParentFolders (IEnumerable<ImapFolder> folders, Cancellation
/// Looks up and sets the <see cref="MailFolder.ParentFolder"/> property of each of the folders.
/// </summary>
/// <param name="folders">The IMAP folders.</param>
/// <param name="doAsync">Whether or not asynchronous IO methods should be used.</param>
/// <param name="cancellationToken">The cancellation token.</param>
internal async Task LookupParentFoldersAsync (IEnumerable<ImapFolder> folders, CancellationToken cancellationToken)
{
Expand Down Expand Up @@ -3494,7 +3491,6 @@ IList<IMailFolder> ToListOfIMailFolder (List<ImapFolder> list)
/// <param name="namespace">The namespace.</param>
/// <param name="items">The status items to pre-populate.</param>
/// <param name="subscribedOnly">If set to <c>true</c>, only subscribed folders will be listed.</param>
/// <param name="doAsync">Whether or not asynchronous IO methods should be used.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public IList<IMailFolder> GetFolders (FolderNamespace @namespace, StatusItems items, bool subscribedOnly, CancellationToken cancellationToken)
{
Expand Down

0 comments on commit a4d4437

Please sign in to comment.