Code Duplication    Length = 1-1 lines in 2 locations

modules/custom-css/custom-css/preprocessors/lessc.inc.php 2 locations

@@ 1349-1349 (lines=1) @@
1346
		if ($comp < 0) $comp += 1.0;
1347
		elseif ($comp > 1) $comp -= 1.0;
1348
1349
		if (6 * $comp < 1) return $temp1 + ($temp2 - $temp1) * 6 * $comp;
1350
		if (2 * $comp < 1) return $temp2;
1351
		if (3 * $comp < 2) return $temp1 + ($temp2 - $temp1)*((2/3) - $comp) * 6;
1352
@@ 1351-1351 (lines=1) @@
1348
1349
		if (6 * $comp < 1) return $temp1 + ($temp2 - $temp1) * 6 * $comp;
1350
		if (2 * $comp < 1) return $temp2;
1351
		if (3 * $comp < 2) return $temp1 + ($temp2 - $temp1)*((2/3) - $comp) * 6;
1352
1353
		return $temp1;
1354
	}