diff --git a/source/tanya/container/array.d b/source/tanya/container/array.d index 472b376..524afef 100644 --- a/source/tanya/container/array.d +++ b/source/tanya/container/array.d @@ -22,9 +22,6 @@ import std.meta; import std.traits; import tanya.memory; -deprecated("Use tanya.container.array instead.") -alias Vector = Array; - /** * Random-access range for the $(D_PSYMBOL Array). * diff --git a/source/tanya/container/vector.d b/source/tanya/container/vector.d deleted file mode 100644 index a957fe5..0000000 --- a/source/tanya/container/vector.d +++ /dev/null @@ -1,16 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -/** - * Single-dimensioned array. - * - * Copyright: Eugene Wissner 2016-2017. - * License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/, - * Mozilla Public License, v. 2.0). - * Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner) - */ -deprecated("Use tanya.container.array instead.") -module tanya.container.vector; - -public import tanya.container.array;