Skip to content

Commit

Permalink
align dots
Browse files Browse the repository at this point in the history
  • Loading branch information
antalk2 committed Aug 20, 2021
1 parent dd4fe78 commit cb13256
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,8 @@ public static boolean isJabRefReferenceMarkName(String name) {
* @param names The list to be filtered.
*/
public static List<String> filterIsJabRefReferenceMarkName(List<String> names) {
return (names
.stream()
.filter(Codec52::isJabRefReferenceMarkName)
.collect(Collectors.toList()));
return (names.stream()
.filter(Codec52::isJabRefReferenceMarkName)
.collect(Collectors.toList()));
}
}

0 comments on commit cb13256

Please sign in to comment.