Code Duplication    Length = 2-2 lines in 2 locations

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

@@ 1065-1066 (lines=2) @@
1062
			if ($this->settings['merge_selectors'] != false)
1063
				return $selector;
1064
1065
			if (!$this->css OR !isset($this->css[$media]) OR !$this->css[$media])
1066
				return $selector;
1067
1068
			// if last is the same, keep it
1069
			end($this->css[$media]);
@@ 1095-1096 (lines=2) @@
1092
		if($this->get_cfg('preserve_css')) {
1093
			return $property;
1094
		}
1095
		if (!$this->css OR !isset($this->css[$media][$selector]) OR !$this->css[$media][$selector])
1096
			return $property;
1097
1098
		while (isset($this->css[$media][$selector][$property]))
1099
			$property .= " ";