소스 검색

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