Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ggershinsky committed Oct 2, 2023
1 parent 436a29a commit acd3d44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public interface EncryptedOutputFile {

/** Underlying output file for native encryption. */
default OutputFile rawOutputFile() {
return null;
throw new UnsupportedOperationException("Not implemented");
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ default ByteBuffer encryptionKey() {
}

default ByteBuffer aadPrefix() {
return null;
throw new UnsupportedOperationException("Not implemented");
}
}

0 comments on commit acd3d44

Please sign in to comment.