From 448a5648455f98b80254b69c98ee00cac1f112f2 Mon Sep 17 00:00:00 2001 From: Blake Erickson Date: Wed, 7 Jul 2021 14:34:05 -0600 Subject: [PATCH] DEV: Remove super old code comment TODO (#13663) This TODO comment has existed for 8 years. Sort must be working just fine or we would have prioritized fixing it. Removing this comment as a tiny step toward keeping our codebase nice and tidy. --- lib/topic_view.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/topic_view.rb b/lib/topic_view.rb index c3d5d2e95ba..675b543b2d0 100644 --- a/lib/topic_view.rb +++ b/lib/topic_view.rb @@ -749,7 +749,6 @@ class TopicView end def filter_posts_by_ids(post_ids) - # TODO: Sort might be off @posts = Post.where(id: post_ids, topic_id: @topic.id) .includes( { user: :primary_group },