Skip to content

Commit

Permalink
fixup! Fix test compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecwik committed Jan 2, 2020
1 parent a6c13dc commit d6c0ab2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Expand Up @@ -197,6 +197,11 @@ public Map<String, FnDataReceiver> getInputReceivers() {
});
}

@Override
public void split(double fractionOfRemainder) {
throw new UnsupportedOperationException();
}

@Override
public void close() throws Exception {
if (once) {
Expand Down
Expand Up @@ -314,6 +314,11 @@ public Map<String, FnDataReceiver> getInputReceivers() {
});
}

@Override
public void split(double fractionOfRemainder) {
throw new UnsupportedOperationException();
}

@Override
public void close() throws Exception {
if (onceEmitted) {
Expand Down
Expand Up @@ -160,6 +160,11 @@ public Map<String, FnDataReceiver> getInputReceivers() {
});
}

@Override
public void split(double fractionOfRemainder) {
throw new UnsupportedOperationException();
}

@Override
public void close() throws Exception {
if (once) {
Expand Down

0 comments on commit d6c0ab2

Please sign in to comment.