about summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-11-06 00:13:46 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-11-06 00:13:46 +0300
commit2ef07f05192c98c7441977420efde6730d730b25 (patch)
tree70588884d3842a5a63bb8ae6d961f8a7a3a24d9f /src/libstd/io
parent7839827a39c9f2eff7dd8146d167de574d09809b (diff)
downloadrust-2ef07f05192c98c7441977420efde6730d730b25.tar.gz
rust-2ef07f05192c98c7441977420efde6730d730b25.zip
Remove stability annotations from trait impl items
Remove `stable` stability annotations from inherent impls
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index ebe50a6e2b8..34736f81033 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -1534,7 +1534,6 @@ pub struct Take<T> {
     limit: u64,
 }
 
-#[stable(feature = "rust1", since = "1.0.0")]
 impl<T> Take<T> {
     /// Returns the number of bytes that can be read before this instance will
     /// return EOF.