Skip to content

Commit 83c5d51

Browse files
committed
Make private field final since it is not reassigned
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1347052 13f79535-47bb-0310-9956-ffa450edef68
1 parent e4c65e5 commit 83c5d51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/io/input/Tailer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public class Tailer implements Runnable {
115115
/**
116116
* Buffer on top of RandomAccessFile.
117117
*/
118-
private byte inbuf[];
118+
private final byte inbuf[];
119119

120120
/**
121121
* The file which will be tailed.

0 commit comments

Comments
 (0)