Code Duplication    Length = 4-4 lines in 2 locations

includes/CMB2_hookup.php 2 locations

@@ 120-123 (lines=4) @@
117
		add_action( 'edit_user_profile_update', array( $this, 'save_user' ) );
118
		add_action( 'user_register', array( $this, 'save_user' ) );
119
120
		if ( $this->cmb->has_columns ) {
121
			add_filter( 'manage_users_columns', array( $this, 'register_column_headers' ) );
122
			add_filter( 'manage_users_custom_column', array( $this, 'return_column_display'  ), 10, 3 );
123
		}
124
	}
125
126
	public function term_hooks() {
@@ 154-157 (lines=4) @@
151
				add_action( "{$taxonomy}_add_form_fields", array( $this, 'term_metabox' ), $priority, 2 );
152
			}
153
154
			if ( $this->cmb->has_columns ) {
155
				add_filter( "manage_edit-{$taxonomy}_columns", array( $this, 'register_column_headers' ) );
156
				add_filter( "manage_{$taxonomy}_custom_column", array( $this, 'return_column_display'  ), 10, 3 );
157
			}
158
		}
159
160
		add_action( 'created_term', array( $this, 'save_term' ), 10, 3 );