Code Duplication    Length = 2-2 lines in 2 locations

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

@@ 1775-1776 (lines=2) @@
1772
		elseif ($h > 1)
1773
			$h -= 1;
1774
1775
		if ($h * 6 < 1)
1776
			return $m1 + ($m2 - $m1) * $h * 6;
1777
1778
		if ($h * 2 < 1)
1779
			return $m2;
@@ 1781-1782 (lines=2) @@
1778
		if ($h * 2 < 1)
1779
			return $m2;
1780
1781
		if ($h * 3 < 2)
1782
			return $m1 + ($m2 - $m1) * (2/3 - $h) * 6;
1783
1784
		return $m1;
1785
	}