Skip to content

Commit

Permalink
Update PropertiesSheetListener.java (#5610)
Browse files Browse the repository at this point in the history
  • Loading branch information
njain2208 authored Dec 6, 2023
1 parent 8440dc2 commit 4703e12
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

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

Expand All @@ -40,7 +41,7 @@ public class PropertiesSheetListener implements DataListener {

private static final String EMPTY_STRING = "";

private final Map<Integer, String[]> _rowProperties = new HashMap<>();
private final Map<Integer, String[]> _rowProperties = new LinkedHashMap<>();

private final CaseInsensitiveMap _properties = new CaseInsensitiveMap();

Expand Down

0 comments on commit 4703e12

Please sign in to comment.