Skip to content

Commit

Permalink
Use 2-space indentation in Java code
Browse files Browse the repository at this point in the history
  • Loading branch information
gbloisi committed Sep 18, 2023
1 parent f789884 commit 384125f
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1712,9 +1712,9 @@ public void testEmptyBean() {
}

public static class ReadOnlyPropertyBean implements Serializable {
public boolean isEmpty() {
return true;
}
public boolean isEmpty() {
return true;
}
}

@Test
Expand All @@ -1725,7 +1725,6 @@ public void testReadOnlyPropertyBean() {
Encoders.bean(ReadOnlyPropertyBean.class));
Assert.assertEquals(1, df.schema().length());
Assert.assertEquals(1, df.collectAsList().size());

}

public class CircularReference1Bean implements Serializable {
Expand Down

0 comments on commit 384125f

Please sign in to comment.