remove useless comments

This commit is contained in:
Allemand 2020-06-17 19:00:40 +02:00 committed by GitHub
parent 670b964e6b
commit 768412ba7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -946,7 +946,7 @@ if (Meteor.isServer) {
existingUser.profile = user.profile;
existingUser.authenticationMethod = user.authenticationMethod;
Meteor.users.remove({ _id: user._id }); // remove previous record
Meteor.users.remove({ _id: user._id });
return existingUser;
}