Skip to content

Commit 4c17f2b

Browse files
committed
Cannot be null
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1003696 13f79535-47bb-0310-9956-ffa450edef68
1 parent 803484d commit 4c17f2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public void run() {
240240
* this, the file position needs to be reset
241241
*/
242242
position = 0;
243-
reader.seek(position);
243+
reader.seek(position); // cannot be null here
244244

245245
// Now we can read new lines
246246
last = System.currentTimeMillis();

0 commit comments

Comments
 (0)