More merging

This commit is contained in:
James Agnew 2014-12-12 17:18:13 -05:00
parent 2f7cbeb348
commit e2aea7d1b2
1 changed files with 6 additions and 1 deletions

View File

@ -989,7 +989,12 @@ public class JsonParser extends BaseParser implements IParser {
private void parseExtensionInDstu2Style(ParserState<?> theState, String theUrl, JsonArray theValues) {
theState.enteringNewElementExtension(null, theUrl, false);
for (int extIdx = 0; extIdx < theValues.size(); extIdx++) {
JsonObject nextExt = theValues.getJsonObject(extIdx);
for (String nextKey : nextExt.keySet()) {
if (nextKey.startsWith("value") && nextKey.length() > 5 && )
}
}
theState.endingElement();
}