From 63fa7373e648ae8949aa4ff8aef17be7372a02ec Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Sun, 22 Oct 2017 16:13:30 +0900 Subject: [PATCH] Remove Tag::value(), which has been deprecated since 0.2.0. --- src/tag.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/tag.rs b/src/tag.rs index 14b172f..11fcf99 100644 --- a/src/tag.rs +++ b/src/tag.rs @@ -67,13 +67,6 @@ impl Tag { self.1 } - /// Returns the tag number. - #[deprecated(since = "0.2.0", note = "renamed to `number()`")] - #[inline] - pub fn value(self) -> u16 { - self.number() - } - /// Returns the description of the tag. #[inline] pub fn description(&self) -> Option<&str> {