Пример #1
0
 protected char consumeAfterValue(final ElementKey currentKey) {
   char c = json.nextConsumingWhitespace();
   if (c == ',') {
     currentKey.next();
     c = json.next();
     if (c <= ' ') {
       c = json.nextConsumingWhitespace();
     }
     return c;
   }
   return c;
 }