Skip to content

Commit

Permalink
fix: regenerate snapshot and remove print statements from ocker
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Akhterov <[email protected]>
  • Loading branch information
janaakhterov committed Feb 1, 2022
1 parent 8f39013 commit 7328e12
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ com.hedera.hashgraph.sdk.AccountInfoTest.toProtobuf=[
"ownedNfts_": 0,
"maxAutomaticTokenAssociations_": 0,
"alias_": {
"hash": 1,
"hash": 0,
"bytes": "",
"validUtf8": true,
"empty": true
Expand Down
3 changes: 0 additions & 3 deletions sdk/src/test/java/com/hedera/hashgraph/sdk/Mocker.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public class Mocker implements AutoCloseable {
var responseIndex = index.getAndIncrement();

if (responseIndex >= response.size()) {
System.out.println("AAAAAAAAA");
responseObserver.onError(Status.Code.ABORTED.toStatus().asRuntimeException());
return;
}
Expand All @@ -67,8 +66,6 @@ public class Mocker implements AutoCloseable {
r = ((Function<Object, Object>) r).apply(request);
}

System.out.println(r);

if (r instanceof Throwable) {
responseObserver.onError((Throwable) r);
} else {
Expand Down

0 comments on commit 7328e12

Please sign in to comment.