Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-alaya-sf committed May 20, 2024
1 parent c1a9aa3 commit 0379f12
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
6 changes: 0 additions & 6 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,6 @@
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>22.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

<build>
Expand Down
3 changes: 1 addition & 2 deletions java/src/main/java/genericpubsub/ManagedSubscribe.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import org.apache.avro.io.BinaryDecoder;
import org.apache.avro.io.DatumReader;
import org.apache.avro.io.DecoderFactory;
import org.jetbrains.annotations.NotNull;
import utility.CommonContext;
import utility.ExampleConfigurations;

Expand Down Expand Up @@ -123,7 +122,7 @@ private void doCommitReplay(ByteString commitReplayId) {
/**
* Helper function to inspect the status of a commitRequest.
*/
private void checkCommitResponse(@NotNull ManagedFetchResponse fetchResponse) {
private void checkCommitResponse(ManagedFetchResponse fetchResponse) {
CommitReplayResponse ce = fetchResponse.getCommitResponse();
try {
if (ce.hasError()) {
Expand Down

0 comments on commit 0379f12

Please sign in to comment.