Code Duplication    Length = 3-3 lines in 3 locations

modules/sitemaps/sitemap-builder.php 1 location

@@ 16-18 (lines=3) @@
13
require_once dirname( __FILE__ ) . '/sitemap-finder.php';
14
require_once dirname( __FILE__ ) . '/sitemap-state.php';
15
16
if ( defined( 'WP_DEBUG' ) && ( true === WP_DEBUG ) ) {
17
	require_once dirname( __FILE__ ) . '/sitemap-logger.php';
18
}
19
20
/**
21
 * The Jetpack_Sitemap_Builder object handles the construction of

modules/sitemaps/sitemap-state.php 1 location

@@ 13-15 (lines=3) @@
10
require_once dirname( __FILE__ ) . '/sitemap-constants.php';
11
require_once dirname( __FILE__ ) . '/sitemap-librarian.php';
12
13
if ( defined( 'WP_DEBUG' ) && ( true === WP_DEBUG ) ) {
14
	require_once dirname( __FILE__ ) . '/sitemap-logger.php';
15
}
16
17
/**
18
 * This class provides an interface for storing and retrieving

modules/sitemaps/sitemaps.php 1 location

@@ 41-43 (lines=3) @@
38
require_once dirname( __FILE__ ) . '/sitemap-finder.php';
39
require_once dirname( __FILE__ ) . '/sitemap-builder.php';
40
41
if ( defined( 'WP_DEBUG' ) && ( true === WP_DEBUG ) ) {
42
	require_once dirname( __FILE__ ) . '/sitemap-logger.php';
43
}
44
45
/**
46
 * Governs the generation, storage, and serving of sitemaps.