Wrong documentation variables fix.

I've fixed documentation for Cleanup annotation. Doc provided before wrong variable information (you closed String instead of Closeable).
This commit is contained in:
Ruslan Popenko
2017-11-07 12:14:54 +02:00
committed by Roel Spilker
parent 4ac941acca
commit aaa876d332
+2 -2
View File
@@ -61,10 +61,10 @@ import java.lang.annotation.Target;
* outStream.write(b, 0, r);
* }
* } finally {
* if (out != null) out.close();
* if (outStream != null) outStream.close();
* }
* } finally {
* if (in != null) in.close();
* if (inStream != null) inStream.close();
* }
* }
* </pre>