Code Duplication    Length = 4-4 lines in 2 locations

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

@@ 144-147 (lines=4) @@
141
			return;
142
		}
143
144
		if ($this->property === 'font' && $this->parser->get_cfg('optimise_shorthands') > 1) {
145
			$this->css[$this->at][$this->selector]['font']='';
146
			$this->parser->merge_css_blocks($this->at, $this->selector, csstidy_optimise::dissolve_short_font($this->value));
147
		}
148
		if ($this->property === 'background' && $this->parser->get_cfg('optimise_shorthands') > 2) {
149
			$this->css[$this->at][$this->selector]['background']='';
150
			$this->parser->merge_css_blocks($this->at, $this->selector, csstidy_optimise::dissolve_short_bg($this->value));
@@ 148-151 (lines=4) @@
145
			$this->css[$this->at][$this->selector]['font']='';
146
			$this->parser->merge_css_blocks($this->at, $this->selector, csstidy_optimise::dissolve_short_font($this->value));
147
		}
148
		if ($this->property === 'background' && $this->parser->get_cfg('optimise_shorthands') > 2) {
149
			$this->css[$this->at][$this->selector]['background']='';
150
			$this->parser->merge_css_blocks($this->at, $this->selector, csstidy_optimise::dissolve_short_bg($this->value));
151
		}
152
		if (isset($shorthands[$this->property])) {
153
			$this->parser->merge_css_blocks($this->at, $this->selector, csstidy_optimise::dissolve_4value_shorthands($this->property, $this->value));
154
			if (is_array($shorthands[$this->property])) {