Skip to content

Commit b8632e1

Browse files
committed
Removed FIXME
1 parent 59710fb commit b8632e1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/libstd/io/buffered.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,9 +448,6 @@ impl<R: Seek> Seek for BufReader<R> {
448448
/// [`flush`]: #method.flush
449449
#[stable(feature = "rust1", since = "1.0.0")]
450450
pub struct BufWriter<W: Write> {
451-
// FIXME: Can this just be W, instead of Option<W>? I don't see any code
452-
// paths that lead to this being None, or that ever check if it IS none,
453-
// even in drop implementations. #72925.
454451
inner: Option<W>,
455452
// FIXME: Replace this with a VecDeque. Because VecDeque is a Ring buffer,
456453
// this would enable BufWriter to operate without any interior copies.

0 commit comments

Comments
 (0)