Skip to content

Commit

Permalink
rename method to undoMoveMessages for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-virkus committed Jan 11, 2021
1 parent 24d8fdf commit ea1d88a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mail/mail_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@ class MailClient {
return _incomingMailClient.moveMessages(sequence, target);
}

/// Undos the previous move operation
Future<MoveResult> undoMove(MoveResult moveResult) {
/// Reverts the previous move operation, if possible.
Future<MoveResult> undoMoveMessages(MoveResult moveResult) {
return _incomingMailClient.undoMove(moveResult);
}
}
Expand Down

0 comments on commit ea1d88a

Please sign in to comment.