Inconsistent continuation indent

已回答

With this indentation settings:

Can someone explain to me why the following two statements are formatted differently? (I would prefer the second to be formatted like the first.)

List<Integer> firstList = Stream.of(
1,
2,
3)
.toList();

List<Integer> secondList = of(
1,
2,
3)
.toList();

The statements are syntactically the same, only the second is using 

import static java.util.stream.Stream.of;
0

请先登录再写评论。