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

Same goes for Metadata.
This commit is contained in:
akwizgran
2017-11-06 15:20:21 +00:00
parent e6b1597fa7
commit b2180582a7
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);