Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ public class Test {
public String field1;
@Nullable
public String field2;

public Foo.@Nullable Bar foobar;
}

Expand Down Expand Up @@ -179,7 +178,6 @@ public class Test {
public String field1;
@Nullable
public String field2;

public Foo.@Nullable Bar foobar;
}

Expand Down Expand Up @@ -271,7 +269,6 @@ public class Test {
public String field1;
@Nullable
public String field2;

public Foo.@Nullable Bar foobar;
}

Expand Down Expand Up @@ -366,7 +363,6 @@ public class Test {
public String field1;
@Nullable
public String field2;

public Foo.@Nullable Bar foobar;
}

Expand Down Expand Up @@ -457,7 +453,6 @@ public class Test {
public String field1;
@Nullable
public String field2;

public Foo.@Nullable Bar foobar;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,18 @@ void textBlock() {
package com.example.app;
class A {
String str = String.format(\"""
foo
%s
\""", "a");
foo
%s
\""", "a");
}
""",
"""
package com.example.app;
class A {
String str = \"""
foo
%s
\""".formatted("a");
foo
%s
\""".formatted("a");
}
"""
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,7 @@ private static TabsAndIndentsStyle buildTabsAndIndents(int tabSize) {
tabSize,
tabSize,
tabSize * 2,
false,
new TabsAndIndentsStyle.MethodDeclarationParameters(true),
new TabsAndIndentsStyle.RecordComponents(true));
false);
}

@Test
Expand Down