mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-02 20:11:50 +00:00
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:
committed by
Roel Spilker
parent
4ac941acca
commit
aaa876d332
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user