removed unused post store function

Этот коммит содержится в:
JoramWilander
2015-08-14 10:51:59 -04:00
родитель 7e2da89590
Коммит d3743550b7

Просмотреть файл

@@ -197,20 +197,6 @@ var PostStore = assign({}, EventEmitter.prototype, {
BrowserStore.removeItem(key);
});
},
removeNonFailedPendingPosts: function(channelId) {
var postList = this.getPendingPosts(channelId);
if (!postList) {
return;
}
var posts = postList.posts;
for (var id in posts) {
if (!posts[id].did_fail) {
this._removePendingPost(channelId, id);
}
}
},
updatePendingPost: function(post) {
var postList = this.getPendingPosts(post.channel_id);
if (!postList) {