Skip to content

Commit

Permalink
[fds] remove redundant currentTimeMillis override
Browse files Browse the repository at this point in the history
  • Loading branch information
wkgcass committed Jun 29, 2024
1 parent 1b3d5d8 commit 7cc7260
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,6 @@ public FDSelector openSelector() {
throw new UnsupportedOperationException();
}

@Override
public long currentTimeMillis() {
return System.currentTimeMillis();
}

@Override
public boolean isV4V6DualStack() {
return true;
Expand Down
5 changes: 0 additions & 5 deletions base/src/main/java/io/vproxy/vfd/jdk/ChannelFDs.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@ public FDSelector openSelector() throws IOException {
return new ChannelSelector(Selector.open());
}

@Override
public long currentTimeMillis() {
return System.currentTimeMillis();
}

@Override
public boolean isV4V6DualStack() {
return true;
Expand Down
5 changes: 0 additions & 5 deletions core/src/main/java/io/vproxy/vswitch/stack/fd/VSwitchFDs.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ public FDSelector openSelector() {
throw new UnsupportedOperationException("not supported");
}

@Override
public long currentTimeMillis() {
return System.currentTimeMillis();
}

@Override
public boolean isV4V6DualStack() {
return false;
Expand Down

0 comments on commit 7cc7260

Please sign in to comment.