From c61a29ef08e7c8b3e836954269678c5a8fa31f3f Mon Sep 17 00:00:00 2001 From: tanner0101 Date: Mon, 16 Apr 2018 22:46:57 -0400 Subject: [PATCH] move to deprecated.swift file --- Sources/Bits/Byte+Control.swift | 8 -------- Sources/Bits/Deprecated.swift | 5 +++++ 2 files changed, 5 insertions(+), 8 deletions(-) create mode 100644 Sources/Bits/Deprecated.swift diff --git a/Sources/Bits/Byte+Control.swift b/Sources/Bits/Byte+Control.swift index 0dbbf5ac..1b2bbb43 100644 --- a/Sources/Bits/Byte+Control.swift +++ b/Sources/Bits/Byte+Control.swift @@ -115,11 +115,3 @@ extension Byte { .newLine ] } - -// MARK: Deprecated - -extension Byte { - /// ~ - @available (*, deprecated, renamed: "tilde") - public static let tilda: Byte = 0x7E -} diff --git a/Sources/Bits/Deprecated.swift b/Sources/Bits/Deprecated.swift new file mode 100644 index 00000000..0d8e66cb --- /dev/null +++ b/Sources/Bits/Deprecated.swift @@ -0,0 +1,5 @@ +extension Byte { + /// ~ + @available (*, deprecated, renamed: "tilde") + public static let tilda: Byte = 0x7E +}