From 9ea269de878ec27411746aa3eb7adcf85c430e46 Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Tue, 5 Aug 2014 13:14:42 +0200 Subject: [PATCH] Removed obsolete 'final' from Reader methods. --- source/dyaml/reader.d | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/dyaml/reader.d b/source/dyaml/reader.d index 7d32bac..00a7db7 100644 --- a/source/dyaml/reader.d +++ b/source/dyaml/reader.d @@ -305,19 +305,19 @@ final class Reader SliceBuilder sliceBuilder; /// Get a string describing current buffer position, used for error messages. - final Mark mark() @safe pure nothrow const @nogc { return Mark(line_, column_); } + Mark mark() @safe pure nothrow const @nogc { return Mark(line_, column_); } /// Get current line number. - final uint line() @safe pure nothrow const @nogc { return line_; } + uint line() @safe pure nothrow const @nogc { return line_; } /// Get current column number. - final uint column() @safe pure nothrow const @nogc { return column_; } + uint column() @safe pure nothrow const @nogc { return column_; } /// Get index of the current character in the buffer. - final size_t charIndex() @safe pure nothrow const @nogc { return charIndex_; } + size_t charIndex() @safe pure nothrow const @nogc { return charIndex_; } /// Get encoding of the input buffer. - final Encoding encoding() @safe pure nothrow const @nogc { return encoding_; } + Encoding encoding() @safe pure nothrow const @nogc { return encoding_; } private: // Decode the next character relative to