浏览代码

remove useless comments

Allemand 5 年之前
父节点
当前提交
768412ba7c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      models/users.js

+ 1 - 1
models/users.js

@@ -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;
     }