Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 584-586 (lines=3) @@
581
						}
582
						// fix for complicated media, i.e @media screen and (-webkit-min-device-pixel-ratio:1.5)
583
						// '/' is included for ratios in Opera: (-o-min-device-pixel-ratio: 3/2)
584
						elseif (in_array($string{$i}, array('(', ')', ':', '.', '/'))) {
585
							$this->at .= $string{$i};
586
						}
587
					} else {
588
						$lastpos = strlen($this->at) - 1;
589
						if (!( (ctype_space($this->at{$lastpos}) || csstidy::is_token($this->at, $lastpos) && $this->at{$lastpos} === ',') && ctype_space($string{$i}))) {
@@ 653-655 (lines=3) @@
650
							$this->sel_separate[] = strlen($this->selector);
651
						} elseif ($string{$i} === '\\') {
652
							$this->selector .= $this->_unicode($string, $i);
653
						} elseif ($string{$i} === '*' && @in_array($string{$i + 1}, array('.', '#', '[', ':'))) {
654
							// remove unnecessary universal selector, FS#147
655
						} else {
656
							$this->selector .= $string{$i};
657
						}
658
					} else {