Code Duplication    Length = 9-9 lines in 2 locations

Contrib/less.php/Less.php 2 locations

@@ 5705-5713 (lines=9) @@
5702
    /**
5703
     * @see Less_Tree::genCSS
5704
     */
5705
    public function genCSS( $output ){
5706
		$val_len = count($this->value);
5707
		for( $i = 0; $i < $val_len; $i++ ){
5708
			$this->value[$i]->genCSS( $output );
5709
			if( $i + 1 < $val_len ){
5710
				$output->add( ' ' );
5711
			}
5712
		}
5713
	}
5714
5715
    public function throwAwayComments() {
5716
@@ 7903-7911 (lines=9) @@
7900
    /**
7901
     * @see Less_Tree::genCSS
7902
     */
7903
	function genCSS( $output ){
7904
		$len = count($this->value);
7905
		for($i = 0; $i < $len; $i++ ){
7906
			$this->value[$i]->genCSS( $output );
7907
			if( $i+1 < $len ){
7908
				$output->add( Less_Environment::$_outputMap[','] );
7909
			}
7910
		}
7911
	}
7912
7913
}
7914