remove unused functions added in this pull request

This commit is contained in:
Ben Lubar
2016-10-27 18:47:33 -05:00
parent ea10f51f2e
commit d4774e98b4

View File

@@ -260,19 +260,4 @@ var plugins = require('./plugins');
});
};
Posts.getReplyPids = function (pid, callback) {
db.getSortedSetRange('pid:' + pid + ':replies', 0, -1, callback);
};
Posts.getReplyPosts = function (pid, uid, callback) {
async.waterfall([
function (next) {
Posts.getReplyPids(pid, next);
},
function (pids, next) {
Posts.getPostsByPids(pids, uid, next);
}
], callback);
};
}(exports));