Skip to content

Commit 042ef7e

Browse files
committed
chore(spanner): lint fix
1 parent 5907ad5 commit 042ef7e

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/Mutation.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -504,9 +504,6 @@ static com.google.spanner.v1.Mutation toProtoGetRandomMutation(
504504
}
505505
}
506506

507-
System.out.println("Printing");
508-
System.out.println(allMutationsExcludingInsert);
509-
System.out.println(largeInsertMutation);
510507
// Select a random mutation based on the heuristic.
511508
if (allMutationsExcludingInsert.size() > 0) {
512509
int randomIndex = ThreadLocalRandom.current().nextInt(allMutationsExcludingInsert.size());

google-cloud-spanner/src/test/java/com/google/cloud/spanner/MutationTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,6 @@ public void toProtoCoalescingDeleteChanges() {
493493

494494
List<com.google.spanner.v1.Mutation> proto = new ArrayList<>();
495495
com.google.spanner.v1.Mutation mutation = Mutation.toProtoGetRandomMutation(mutations, proto);
496-
System.out.println(mutation);
497496
assertTrue(mutation.hasDelete());
498497

499498
assertThat(proto.size()).isEqualTo(4);

0 commit comments

Comments
 (0)