[Yaml] Removed unused $nullAsTilde property

This commit is contained in:
Pierre du Plessis 2019-08-05 10:53:31 +02:00 committed by Christian Flothmann
parent f64d3fc23e
commit fbef8543cd

View File

@ -33,7 +33,6 @@ class Inline
private static $objectSupport = false; private static $objectSupport = false;
private static $objectForMap = false; private static $objectForMap = false;
private static $constantSupport = false; private static $constantSupport = false;
private static $nullAsTilde = false;
/** /**
* @param int $flags * @param int $flags
@ -46,7 +45,6 @@ class Inline
self::$objectSupport = (bool) (Yaml::PARSE_OBJECT & $flags); self::$objectSupport = (bool) (Yaml::PARSE_OBJECT & $flags);
self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags); self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags);
self::$constantSupport = (bool) (Yaml::PARSE_CONSTANT & $flags); self::$constantSupport = (bool) (Yaml::PARSE_CONSTANT & $flags);
self::$nullAsTilde = (bool) (Yaml::DUMP_NULL_AS_TILDE & $flags);
self::$parsedFilename = $parsedFilename; self::$parsedFilename = $parsedFilename;
if (null !== $parsedLineNumber) { if (null !== $parsedLineNumber) {