Skip to content

Commit d82ecb4

Browse files
committed
Javadoc
1 parent f072dd2 commit d82ecb4

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpRandomAccessContent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
*/
3131
final class FtpRandomAccessContent extends AbstractRandomAccessStreamContent {
3232

33+
/**
34+
* The random access file pointer.
35+
*/
3336
protected long filePointer;
3437

3538
private final FtpFileObject fileObject;

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpRandomAccessContent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
@Deprecated
3737
final class HttpRandomAccessContent<FS extends HttpFileSystem> extends AbstractRandomAccessStreamContent {
3838

39+
/**
40+
* The random access file pointer.
41+
*/
3942
protected long filePointer;
4043

4144
private final HttpFileObject<FS> fileObject;

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http4/Http4RandomAccessContent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
@Deprecated
3838
final class Http4RandomAccessContent<FS extends Http4FileSystem> extends AbstractRandomAccessStreamContent {
3939

40+
/**
41+
* The random access file pointer.
42+
*/
4043
protected long filePointer;
4144

4245
private final Http4FileObject<FS> fileObject;

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http5/Http5RandomAccessContent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
*/
3636
final class Http5RandomAccessContent<FS extends Http5FileSystem> extends AbstractRandomAccessStreamContent {
3737

38+
/**
39+
* The random access file pointer.
40+
*/
3841
protected long filePointer;
3942

4043
private final Http5FileObject<FS> fileObject;

0 commit comments

Comments
 (0)