Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 2780-2782 (lines=3) @@
2777
        $s = $this->seek();
2778
2779
        // speed shortcut
2780
        if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != '(') {
2781
            return false;
2782
        }
2783
2784
        $inParens = $this->inParens;
2785
        if ($this->literal('(') &&
@@ 3288-3290 (lines=3) @@
3285
    protected function tagBracket(&$value)
3286
    {
3287
        // speed shortcut
3288
        if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != '[') {
3289
            return false;
3290
        }
3291
3292
        $s = $this->seek();
3293
        if ($this->literal('[') && $this->to(']', $c, true) && $this->literal(']', false)) {