remove unstable for Codec methods used internally

This commit is contained in:
Sean McArthur
2017-09-17 13:28:50 -07:00
parent 1022e04276
commit 92030f634f
2 changed files with 0 additions and 2 deletions

View File

@@ -232,7 +232,6 @@ impl<T> FramedRead<T> {
/// Updates the max frame size setting.
///
/// Must be within 16,384 and 16,777,215.
#[cfg(feature = "unstable")]
#[inline]
pub fn set_max_frame_size(&mut self, val: usize) {
assert!(DEFAULT_MAX_FRAME_SIZE as usize <= val && val <= MAX_MAX_FRAME_SIZE as usize);