Showing
1 changed file
with
2 additions
and
1 deletions
@@ -223,7 +223,8 @@ public class CustomizeTagBaseService { | @@ -223,7 +223,8 @@ public class CustomizeTagBaseService { | ||
223 | return new ArrayList<>(); | 223 | return new ArrayList<>(); |
224 | } | 224 | } |
225 | List<Map<String, Object>> resultList = new ArrayList<>(); | 225 | List<Map<String, Object>> resultList = new ArrayList<>(); |
226 | - sortedCustomizeTags.stream().forEach(p -> resultList.add(this.getTagMap(p))); | 226 | + CustomizeTag customizeTag = sortedCustomizeTags.get(0); |
227 | + resultList.add(this.getTagMap(customizeTag)); | ||
227 | return resultList; | 228 | return resultList; |
228 | } catch (Exception e) { | 229 | } catch (Exception e) { |
229 | logger.error(e.getMessage(), e); | 230 | logger.error(e.getMessage(), e); |
-
Please register or login to post a comment