From c34c24ffe4bcf2ce1b381dc1e0078d841535f844 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Fri, 15 Oct 2021 10:23:13 +0800 Subject: [PATCH] DEV: Remove unused code from `TopicView`. (#14605) --- lib/topic_view.rb | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/lib/topic_view.rb b/lib/topic_view.rb index 1f4817e8655..bcd61346753 100644 --- a/lib/topic_view.rb +++ b/lib/topic_view.rb @@ -87,7 +87,6 @@ class TopicView check_and_raise_exceptions(options[:skip_staff_action]) @message_bus_last_id = MessageBus.last_id("/topic/#{@topic.id}") - @print = options[:print].present? options.each do |key, value| self.instance_variable_set("@#{key}".to_sym, value) @@ -109,10 +108,6 @@ class TopicView @page = @page.to_i > 1 ? @page.to_i : calculate_page setup_filtered_posts - - @initial_load = true - @index_reverse = false - filter_posts(options) if @posts && !@skip_custom_fields @@ -317,13 +312,6 @@ class TopicView @group_names = result end - # Find the sort order for a post in the topic - def sort_order_for_post_number(post_number) - posts = Post.where(topic_id: @topic.id, post_number: post_number).with_deleted - posts = filter_post_types(posts) - posts.select(:sort_order).first.try(:sort_order) - end - # Filter to all posts near a particular post number def filter_posts_near(post_number) posts_before = (@limit.to_f / 4).floor @@ -564,12 +552,6 @@ class TopicView @link_counts ||= TopicLink.counts_for(@guardian, @topic, posts) end - # Are we the initial page load? If so, we can return extra information like - # user post counts, etc. - def initial_load? - @initial_load - end - def pm_params @pm_params ||= TopicQuery.new(@user).get_pm_params(topic) end