From 3e0ccb232f0a816d479ce84cb1fcd3bae2b75fa0 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Tue, 3 Oct 2017 21:14:25 +0200 Subject: [PATCH] Remove useless property in AbstractWKTWriter --- src/IO/AbstractWKTWriter.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/IO/AbstractWKTWriter.php b/src/IO/AbstractWKTWriter.php index 27730406..43bb0f15 100644 --- a/src/IO/AbstractWKTWriter.php +++ b/src/IO/AbstractWKTWriter.php @@ -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. * @@ -46,7 +39,6 @@ abstract class AbstractWKTWriter */ public function setPrettyPrint(bool $prettyPrint) : void { - $this->prettyPrint = $prettyPrint; $this->prettyPrintSpace = $prettyPrint ? ' ' : ''; }