Closed GoogleCodeExporter closed 9 years ago
closeQuietly(Closeable) was intentionally deprecated and then removed (see
https://code.google.com/p/guava-libraries/issues/detail?id=1118). As of 17.0,
there's closeQuietly(InputStream) and closeQuietly(Reader), as closeQuietly is
generally safe in those cases. Using it with a stream that's used for output is
a bad idea, which is why we removed it.
You should be able to replace it with try-with-resources (best) or Closer in
most cases.
Original comment by cgdecker@google.com
on 12 Sep 2014 at 4:42
This issue has been migrated to GitHub.
It can be found at https://github.com/google/guava/issues/<issue id>
Original comment by cgdecker@google.com
on 1 Nov 2014 at 4:08
Original comment by cgdecker@google.com
on 3 Nov 2014 at 9:07
Original issue reported on code.google.com by
shridhar...@googlemail.com
on 12 Sep 2014 at 3:42