Code Duplication    Length = 4-4 lines in 2 locations

app/Vendor/PHPExcel/PHPExcel/Writer/HTML.php 2 locations

@@ 694-697 (lines=4) @@
691
					$this->_columnWidths[$sheetIndex][$column] = $width;
692
					$css['table.sheet' . $sheetIndex . ' col.col' . $column]['width'] = $width . 'pt';
693
694
					if ($columnDimension->getVisible() === false) {
695
						$css['table.sheet' . $sheetIndex . ' col.col' . $column]['visibility'] = 'collapse';
696
						$css['table.sheet' . $sheetIndex . ' col.col' . $column]['*display'] = 'none'; // target IE6+7
697
					}
698
				}
699
			}
700
@@ 731-734 (lines=4) @@
728
					$pt_height = $rowDimension->getRowHeight();
729
				}
730
				$css['table.sheet' . $sheetIndex . ' tr.row' . $row]['height'] = $pt_height . 'pt';
731
				if ($rowDimension->getVisible() === false) {
732
					$css['table.sheet' . $sheetIndex . ' tr.row' . $row]['display'] = 'none';
733
					$css['table.sheet' . $sheetIndex . ' tr.row' . $row]['visibility'] = 'hidden';
734
				}
735
			}
736
		}
737