From 11ecd3e8ccc1deb52909b99f732224d93a97b8a4 Mon Sep 17 00:00:00 2001 From: Cameron Ross Date: Sun, 10 Jun 2018 02:58:17 -0300 Subject: [PATCH] Remove redundant package visibility declarations --- source/dyaml/node.d | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/dyaml/node.d b/source/dyaml/node.d index bfb7121..571cedd 100644 --- a/source/dyaml/node.d +++ b/source/dyaml/node.d @@ -122,7 +122,6 @@ private struct Pair /// Value node. Node value; - public: /// Construct a Pair from two values. Will be converted to Nodes if needed. this(K, V)(K key, V value) { @@ -192,13 +191,11 @@ struct Node Value.allowed!T; } - package: // Stored value. Value value_; // Start position of the node. Mark startMark_; - package: // Tag of the node. string tag_; // Node scalar style. Used to remember style this node was loaded with.