Code Duplication    Length = 9-9 lines in 2 locations

Contrib/less.php/Less.php 2 locations

@@ 5713-5721 (lines=9) @@
5710
    /**
5711
     * @see Less_Tree::genCSS
5712
     */
5713
    public function genCSS( $output ){
5714
		$val_len = count($this->value);
5715
		for( $i = 0; $i < $val_len; $i++ ){
5716
			$this->value[$i]->genCSS( $output );
5717
			if( $i + 1 < $val_len ){
5718
				$output->add( ' ' );
5719
			}
5720
		}
5721
	}
5722
5723
    public function throwAwayComments() {
5724
@@ 7911-7919 (lines=9) @@
7908
    /**
7909
     * @see Less_Tree::genCSS
7910
     */
7911
	function genCSS( $output ){
7912
		$len = count($this->value);
7913
		for($i = 0; $i < $len; $i++ ){
7914
			$this->value[$i]->genCSS( $output );
7915
			if( $i+1 < $len ){
7916
				$output->add( Less_Environment::$_outputMap[','] );
7917
			}
7918
		}
7919
	}
7920
7921
}
7922