Skip to content

Commit

Permalink
Changed customData type to LinkedHashMap for custom options right order
Browse files Browse the repository at this point in the history
  • Loading branch information
blinchik authored and nbartels committed Sep 23, 2021
1 parent 644f223 commit 5f46301
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/lombok/com/restfb/types/ads/ProductItem.java
Expand Up @@ -22,7 +22,7 @@
package com.restfb.types.ads;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

Expand Down Expand Up @@ -95,7 +95,7 @@ public class ProductItem extends NamedAdsObject {
@Getter
@Setter
@Facebook("custom_data")
private Map<String, String> customData = new HashMap<>();
private Map<String, String> customData = new LinkedHashMap<>();

@Getter
@Setter
Expand Down

0 comments on commit 5f46301

Please sign in to comment.