Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #141 from NeverOddOrEven/remove-redundant-variable…
Browse files Browse the repository at this point in the history
…-declaration

Remove redundant variable declaration
  • Loading branch information
amoshaviv committed Oct 7, 2014
2 parents e5e2616 + 99b6756 commit b699d12
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/controllers/users/users.password.server.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ var _ = require('lodash'),
User = mongoose.model('User'),
config = require('../../../config/config'),
nodemailer = require('nodemailer'),
crypto = require('crypto'),
async = require('async'),
crypto = require('crypto');

Expand Down Expand Up @@ -245,4 +244,4 @@ exports.changePassword = function(req, res, next) {
message: 'User is not signed in'
});
}
};
};

0 comments on commit b699d12

Please sign in to comment.