From 24a8e945bdc3a78d3a1537fd15e9df23cbebabef Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Thu, 31 Jul 2014 02:07:32 +0200 Subject: [PATCH] Removed docs of deprecated API. --- source/dyaml/loader.d | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/source/dyaml/loader.d b/source/dyaml/loader.d index a3b854a..a679faf 100644 --- a/source/dyaml/loader.d +++ b/source/dyaml/loader.d @@ -124,15 +124,6 @@ struct Loader } } - /// Construct a Loader to load YAML from a string. - /// - /// Params: data = String to load YAML from. - /// - /// Returns: Loader loading YAML from given string. - /// - /// Throws: - /// - /// YAMLException if data could not be read (e.g. a decoding error) deprecated("Loader.fromString(string) is deprecated. Use Loader.fromString(char[]) instead.") static Loader fromString(string data) { @@ -144,11 +135,6 @@ struct Loader } import std.stream; - /// Construct a Loader to load YAML from a _stream. - /// - /// Params: stream = Stream to read from. Must be readable and seekable. - /// - /// Throws: YAMLException if stream could not be read. deprecated("Loader(Stream) is deprecated. Use Loader(ubyte[]) instead.") this(Stream stream) @safe {