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

system/libraries/Image_lib.php 2 locations

@@ 1098-1105 (lines=8) @@
1095
		}
1096
1097
		// Show the image
1098
		if ($this->dynamic_output === TRUE)
1099
		{
1100
			$this->image_display_gd($src_img);
1101
		}
1102
		elseif ( ! $this->image_save_gd($src_img)) // ... or save it
1103
		{
1104
			return FALSE;
1105
		}
1106
1107
		// Kill the file handles
1108
		imagedestroy($src_img);
@@ 1229-1236 (lines=8) @@
1226
		}
1227
1228
		// Output the image
1229
		if ($this->dynamic_output === TRUE)
1230
		{
1231
			$this->image_display_gd($src_img);
1232
		}
1233
		elseif ( ! $this->image_save_gd($src_img)) // ... or save it
1234
		{
1235
			return FALSE;
1236
		}
1237
1238
		imagedestroy($src_img);
1239
		imagedestroy($wm_img);