We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4d58d commit 0f901cfCopy full SHA for 0f901cf
src/edu/stanford/nlp/trees/ud/CoNLLUUtils.java
@@ -18,7 +18,7 @@ public class CoNLLUUtils {
18
* @return A HashMap<String,String> with the feature values.
19
*/
20
public static HashMap<String,String> parseFeatures(String featureString) {
21
- HashMap<String, String> features = new HashMap<>();
+ HashMap<String, String> features = new LinkedHashMap<>();
22
if (! featureString.equals("_")) {
23
String[] featValPairs = featureString.split("\\|");
24
for (String p : featValPairs) {
0 commit comments