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 caf52fb commit bb189c7Copy full SHA for bb189c7
README.md
@@ -82,10 +82,10 @@ https://github.com/APIJSON/APIJSON-Demo/blob/master/APIJSON-Java-Server/APIJSONB
82
Map<String, String> userKeyColumnMap = new HashMap<>();
83
userKeyColumnMap.put("gender", "sex");
84
85
- Map<String, Map<String, String>> tableKeyColumnMap = new HashMap<>();
86
- tableKeyColumnMap.put("User", userKeyColumnMap);
+ Map<String, Map<String, String>> keyColumnMap = new HashMap<>();
+ keyColumnMap.put("User", userKeyColumnMap);
87
88
- ColumnUtil.VERSIONED_KEY_COLUMN_MAP.put(null, tableKeyColumnMap);
+ ColumnUtil.VERSIONED_KEY_COLUMN_MAP.put(null, keyColumnMap);
89
90
ColumnUtil.init();
91
}
0 commit comments