Prettier-Java 2.7.3
Playground link
Input:
public abstract class Foo implements MyInterface {
@Override
public String foo() {
Map<String, Map<String, Object>> deepCopy =
(Map<String, Map<String, Object>>) Helpers.deepCopyOf(map);
}
}
Output:
public abstract class Foo implements MyInterface {
@Override
public String foo() {
Map<String, Map<String, Object>> deepCopy = (Map<
String,
Map<String, Object>
>) Helpers.deepCopyOf(map);
}
}
Expected behavior:
I don't expect the generic arguments to be split like this. It's better if the method-call is on a new line instead.
Prettier-Java 2.7.3
Playground link
Input:
Output:
Expected behavior:
I don't expect the generic arguments to be split like this. It's better if the method-call is on a new line instead.