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 = 12-12 lines in 2 locations

system/libraries/Javascript/Jquery.php 2 locations

@@ 502-513 (lines=12) @@
499
	 * @param	string	- Javascript callback function
500
	 * @return	string
501
	 */
502
	protected function _fadeIn($element = 'this', $speed = '', $callback = '')
503
	{
504
		$element = $this->_prep_element($element);
505
		$speed = $this->_validate_speed($speed);
506
507
		if ($callback !== '')
508
		{
509
			$callback = ", function(){\n{$callback}\n}";
510
		}
511
512
		return "$({$element}).fadeIn({$speed}{$callback});";
513
	}
514
515
	// --------------------------------------------------------------------
516
@@ 552-563 (lines=12) @@
549
	 * @param	string	- Javascript callback function
550
	 * @return	string
551
	 */
552
	protected function _hide($element = 'this', $speed = '', $callback = '')
553
	{
554
		$element = $this->_prep_element($element);
555
		$speed = $this->_validate_speed($speed);
556
557
		if ($callback !== '')
558
		{
559
			$callback = ", function(){\n{$callback}\n}";
560
		}
561
562
		return "$({$element}).hide({$speed}{$callback});";
563
	}
564
565
	// --------------------------------------------------------------------
566