Code Duplication    Length = 11-11 lines in 2 locations

caffeinated/admin/new/pricing/Pricing_Admin_Page.core.php 2 locations

@@ 466-476 (lines=11) @@
463
	*		@access protected
464
	*		@return void
465
	*/
466
	protected function _price_overview_list_table() {
467
		$this->_admin_page_title .= ' ' . $this->get_action_link_or_button(
468
		    'add_new_price',
469
            'add',
470
            array(),
471
            'add-new-h2'
472
        );
473
		$this->admin_page_title .= $this->_learn_more_about_pricing_link();
474
		$this->_search_btn_label = __('Default Prices', 'event_espresso');
475
		$this->display_admin_list_table_page_with_no_sidebar();
476
	}
477
478
479
@@ 928-938 (lines=11) @@
925
	*		@access protected
926
	*		@return void
927
	*/
928
	protected function _price_types_overview_list_table() {
929
		$this->_admin_page_title .= ' ' . $this->get_action_link_or_button(
930
		    'add_new_price_type',
931
            'add_type',
932
            array(),
933
            'add-new-h2'
934
        );
935
		$this->admin_page_title .= $this->_learn_more_about_pricing_link();
936
		$this->_search_btn_label = __('Price Types', 'event_espresso');
937
		$this->display_admin_list_table_page_with_no_sidebar();
938
	}
939
940
941