Skip to content

Commit ff5cf96

Browse files
committed
Url: fix constants order.
Correction for 78e9e94 commit (#622). No functional changes.
1 parent 1e0c705 commit ff5cf96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ru/mystamps/web/Url.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ public static Map<String, String> asMap(boolean production) {
180180
} else {
181181
// Use a separate domain for our own resources
182182
// Constants sorted in an ascending order.
183-
map.put("FAVICON_ICO", STATIC_RESOURCES_URL + FAVICON_ICO);
184183
map.put("CATALOG_UTILS_JS", STATIC_RESOURCES_URL + CATALOG_UTILS_JS);
185184
map.put("COLLECTION_INFO_JS", STATIC_RESOURCES_URL + COLLECTION_INFO_JS);
186185
map.put("DATE_UTILS_JS", STATIC_RESOURCES_URL + DATE_UTILS_JS);
186+
map.put("FAVICON_ICO", STATIC_RESOURCES_URL + FAVICON_ICO);
187187
map.put("GET_IMAGE_PAGE", STATIC_RESOURCES_URL + GET_IMAGE_PAGE);
188188
map.put("GET_IMAGE_PREVIEW_PAGE", STATIC_RESOURCES_URL + GET_IMAGE_PREVIEW_PAGE);
189189
map.put("MAIN_CSS", STATIC_RESOURCES_URL + MAIN_CSS);

0 commit comments

Comments
 (0)