Code Duplication    Length = 3-3 lines in 2 locations

lib/Ajde/Document/Processor/Css/lib/less/lessc.inc.php 2 locations

@@ 1257-1259 (lines=3) @@
1254
            $comp -= 1.0;
1255
        }
1256
1257
        if (6 * $comp < 1) {
1258
            return $temp1 + ($temp2 - $temp1) * 6 * $comp;
1259
        }
1260
        if (2 * $comp < 1) {
1261
            return $temp2;
1262
        }
@@ 1263-1265 (lines=3) @@
1260
        if (2 * $comp < 1) {
1261
            return $temp2;
1262
        }
1263
        if (3 * $comp < 2) {
1264
            return $temp1 + ($temp2 - $temp1) * ((2 / 3) - $comp) * 6;
1265
        }
1266
1267
        return $temp1;
1268
    }