Skip to content

Commit

Permalink
Remove unused lineEnding methods from CSV Reader
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkBaker committed Aug 27, 2014
1 parent 6d22097 commit 99f4eba
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions Classes/PHPExcel/Reader/CSV.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,6 @@ class PHPExcel_Reader_CSV extends PHPExcel_Reader_Abstract implements PHPExcel_R
*/
private $_enclosure = '"';

/**
* Line ending
*
* @access private
* @var string
*/
private $_lineEnding = PHP_EOL;

/**
* Sheet index to read
*
Expand Down Expand Up @@ -348,26 +340,6 @@ public function setEnclosure($pValue = '"') {
return $this;
}

/**
* Get line ending
*
* @return string
*/
public function getLineEnding() {
return $this->_lineEnding;
}

/**
* Set line ending
*
* @param string $pValue Line ending, defaults to OS line ending (PHP_EOL)
* @return PHPExcel_Reader_CSV
*/
public function setLineEnding($pValue = PHP_EOL) {
$this->_lineEnding = $pValue;
return $this;
}

/**
* Get sheet index
*
Expand Down

0 comments on commit 99f4eba

Please sign in to comment.