Skip to content

Commit

Permalink
Run spotless.
Browse files Browse the repository at this point in the history
  • Loading branch information
Antlion12 committed Jul 16, 2024
1 parent 2a0c807 commit 1f7e018
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,10 @@ public void testArrayOfStructAndStructCompareJavaFile() throws Exception {
@Test
public void testStaticArrayOfStructsInStructGeneration() throws Exception {
testCodeGeneration(
"staticarrayofstructsinstruct", "StaticArrayOfStructsInStruct", JAVA_TYPES_ARG, false);
"staticarrayofstructsinstruct",
"StaticArrayOfStructsInStruct",
JAVA_TYPES_ARG,
false);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,9 @@ public void setComponents(final List<NamedType> components) {

public String structIdentifier() {
return ((internalType == null ? type : internalType.isEmpty() ? type : internalType)
+ components.stream()
.map(NamedType::structIdentifier)
.collect(Collectors.joining()));
+ components.stream()
.map(NamedType::structIdentifier)
.collect(Collectors.joining()));
}

public int nestedness() {
Expand Down

0 comments on commit 1f7e018

Please sign in to comment.