Skip to content

Commit 24214ee

Browse files
authored
removed check for empty message
1 parent 270f823 commit 24214ee

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

quickfixj-base/src/main/java/quickfix/DataDictionary.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1168,10 +1168,6 @@ public int getNumMessageCategories() {
11681168
private void load(Document document, String msgtype, Node node) throws ConfigError {
11691169
String name;
11701170
final NodeList fieldNodes = node.getChildNodes();
1171-
if (countElementNodes(fieldNodes) == 0) {
1172-
throw new ConfigError("No fields found: msgType=" + msgtype);
1173-
}
1174-
11751171
for (int j = 0; j < fieldNodes.getLength(); j++) {
11761172
final Node fieldNode = fieldNodes.item(j);
11771173

0 commit comments

Comments
 (0)