TRIVIAL: remove obsolete comments

This commit is contained in:
Arpit Jalan 2014-07-02 16:50:54 +05:30
parent 94fd592dfa
commit af4101f783
2 changed files with 0 additions and 2 deletions

View file

@ -266,7 +266,6 @@ module Export
def notify_user
log "Notifying '#{@user.username}' of the end of the backup..."
# NOTE: will only notify if @user != Discourse.site_contact_user
if @success
SystemMessage.create_from_system_user(@user, :export_succeeded)
else

View file

@ -282,7 +282,6 @@ module Import
def notify_user
if user = User.find_by(email: @user_info[:email])
log "Notifying '#{user.username}' of the end of the restore..."
# NOTE: will only notify if user != Discourse.site_contact_user
if @success
SystemMessage.create_from_system_user(user, :import_succeeded)
else