Skip to content

Commit 8e06b0a

Browse files
committed
chore(CollectionController): wrap a long line to fix CheckStyle warning.
Should be in b3f64d2 commit.
1 parent b3f64d2 commit 8e06b0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/ru/mystamps/web/feature/collection/CollectionController.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ private Map<String, Integer> getCountriesStatistics(Integer collectionId, String
130130
// manually localize "Unknown" country's name
131131
Integer unknownCounter = countriesStat.get("Unknown");
132132
if (unknownCounter != null) {
133-
String localizedValue = messageSource.getMessage("t_unspecified", null, new Locale(lang));
133+
String localizedValue =
134+
messageSource.getMessage("t_unspecified", null, new Locale(lang));
134135
countriesStat.put(localizedValue, unknownCounter);
135136
countriesStat.remove("Unknown");
136137
}

0 commit comments

Comments
 (0)