Code Duplication    Length = 7-8 lines in 2 locations

modules/custom-css/csstidy/class.csstidy.php 2 locations

@@ 684-691 (lines=8) @@
681
							$this->status = 'ic';
682
							++$i;
683
							$this->from[] = 'ip';
684
						} elseif ($string{$i} === '}') {
685
							$this->explode_selectors();
686
							$this->status = 'is';
687
							$this->invalid_at = false;
688
							$this->_add_token(SEL_END, $this->selector);
689
							$this->selector = '';
690
							$this->property = '';
691
						} elseif ($string{$i} === ';') {
692
							$this->property = '';
693
						} elseif ($string{$i} === '\\') {
694
							$this->property .= $this->_unicode($string, $i);
@@ 826-832 (lines=7) @@
823
							$this->sub_value_arr = array();
824
							$this->value = '';
825
						}
826
						if ($string{$i} === '}') {
827
							$this->explode_selectors();
828
							$this->_add_token(SEL_END, $this->selector);
829
							$this->status = 'is';
830
							$this->invalid_at = false;
831
							$this->selector = '';
832
						}
833
					} elseif (!$pn) {
834
						$this->sub_value .= $string{$i};
835