Merge branch '764-bdf-list-dictionary-not-thread-safe' into 'master'

BdfList and BdfDictionary don't need to be thread-safe

Closes #764

See merge request !614
This commit is contained in:
Torsten Grote
2017-11-21 13:00:23 +00:00
4 changed files with 14 additions and 9 deletions

View File

@@ -75,7 +75,7 @@ class BlogPostValidator extends BdfMessageValidator {
BdfMessageContext c;
int type = body.getLong(0).intValue();
body.removeElementAt(0);
body.remove(0);
switch (MessageType.valueOf(type)) {
case POST:
c = validatePost(m, g, body);