From fbef8543cdf49e3f9593f1688ed9e1879ec33922 Mon Sep 17 00:00:00 2001 From: Pierre du Plessis Date: Mon, 5 Aug 2019 10:53:31 +0200 Subject: [PATCH] [Yaml] Removed unused $nullAsTilde property --- src/Symfony/Component/Yaml/Inline.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Symfony/Component/Yaml/Inline.php b/src/Symfony/Component/Yaml/Inline.php index c028ccf071..2d4e1be2fd 100644 --- a/src/Symfony/Component/Yaml/Inline.php +++ b/src/Symfony/Component/Yaml/Inline.php @@ -33,7 +33,6 @@ class Inline private static $objectSupport = false; private static $objectForMap = false; private static $constantSupport = false; - private static $nullAsTilde = false; /** * @param int $flags @@ -46,7 +45,6 @@ class Inline self::$objectSupport = (bool) (Yaml::PARSE_OBJECT & $flags); self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags); self::$constantSupport = (bool) (Yaml::PARSE_CONSTANT & $flags); - self::$nullAsTilde = (bool) (Yaml::DUMP_NULL_AS_TILDE & $flags); self::$parsedFilename = $parsedFilename; if (null !== $parsedLineNumber) {