Code Duplication    Length = 4-5 lines in 2 locations

class.jetpack.php 2 locations

@@ 1284-1287 (lines=4) @@
1281
	public static function is_single_user_site() {
1282
		global $wpdb;
1283
1284
		if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) {
1285
			$some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" );
1286
			set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS );
1287
		}
1288
		return 1 === (int) $some_users;
1289
	}
1290
@@ 3379-3383 (lines=5) @@
3376
				return -1; // Not a real value but should tell us that we are dealing with a large network.
3377
			}
3378
		}
3379
		if ( false === ( $user_count = get_transient( 'jetpack_site_user_count' ) ) ) {
3380
			// It wasn't there, so regenerate the data and save the transient
3381
			$user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities'" );
3382
			set_transient( 'jetpack_site_user_count', $user_count, DAY_IN_SECONDS );
3383
		}
3384
		return $user_count;
3385
	}
3386