Skip to content

Commit

Permalink
Remove useless property in AbstractWKTWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Oct 3, 2017
1 parent c5e9e9a commit 3e0ccb2
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/IO/AbstractWKTWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@
*/
abstract class AbstractWKTWriter
{
/**
* Whether to pretty-print (add extra spaces for readability) the WKT.
*
* @var bool
*/
private $prettyPrint = true;

/**
* A space if prettyPrint is true, an empty string otherwise.
*
Expand All @@ -46,7 +39,6 @@ abstract class AbstractWKTWriter
*/
public function setPrettyPrint(bool $prettyPrint) : void
{
$this->prettyPrint = $prettyPrint;
$this->prettyPrintSpace = $prettyPrint ? ' ' : '';
}

Expand Down

0 comments on commit 3e0ccb2

Please sign in to comment.