Code Duplication    Length = 10-11 lines in 2 locations

class.jetpack-admin.php 1 location

@@ 54-64 (lines=11) @@
51
		add_action( 'jetpack_unrecognized_action', array( $this, 'handle_unrecognized_action' ) );
52
	}
53
54
	static function sort_requires_connection_last( $module1, $module2 ) {
55
		if ( $module1['requires_connection'] == $module2['requires_connection'] ) {
56
			return 0;
57
		} elseif ( $module1['requires_connection'] ) {
58
			return 1;
59
		} elseif ( $module2['requires_connection'] ) {
60
			return -1;
61
		}
62
63
		return 0;
64
	}
65
66
	// Produce JS understandable objects of modules containing information for
67
	// presentation like description, name, configuration url, etc.

class.jetpack-modules-list-table.php 1 location

@@ 192-201 (lines=10) @@
189
		return true;
190
	}
191
192
	static function sort_requires_connection_last( $module1, $module2 ) {
193
		if ( $module1['requires_connection'] == $module2['requires_connection'] ) {
194
			return 0;
195
		}
196
		if ( $module1['requires_connection'] ) {
197
			return 1;
198
		}
199
		if ( $module2['requires_connection'] ) {
200
			return -1;
201
		}
202
203
		return 0;
204
	}