GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 16-16 lines in 2 locations

third-party/jQuery/jquery-1.12.1.js 1 location

@@ 8946-8961 (lines=16) @@
8943
		} );
8944
	},
8945
8946
	hasClass: function( selector ) {
8947
		var className, elem,
8948
			i = 0;
8949
8950
		className = " " + selector + " ";
8951
		while ( ( elem = this[ i++ ] ) ) {
8952
			if ( elem.nodeType === 1 &&
8953
				( " " + getClass( elem ) + " " ).replace( rclass, " " )
8954
					.indexOf( className ) > -1
8955
			) {
8956
				return true;
8957
			}
8958
		}
8959
8960
		return false;
8961
	}
8962
} );
8963
8964

third-party/jQuery/jquery-2.2.1.js 1 location

@@ 7509-7524 (lines=16) @@
7506
		} );
7507
	},
7508
7509
	hasClass: function( selector ) {
7510
		var className, elem,
7511
			i = 0;
7512
7513
		className = " " + selector + " ";
7514
		while ( ( elem = this[ i++ ] ) ) {
7515
			if ( elem.nodeType === 1 &&
7516
				( " " + getClass( elem ) + " " ).replace( rclass, " " )
7517
					.indexOf( className ) > -1
7518
			) {
7519
				return true;
7520
			}
7521
		}
7522
7523
		return false;
7524
	}
7525
} );
7526
7527