(int c)
| 68 | private StringBuilder current = null; |
| 69 | |
| 70 | private void append(int c) { |
| 71 | if (current == null) { |
| 72 | if (key == null) { |
| 73 | current = key = new StringBuilder(); |
| 74 | } else { |
| 75 | current = value = new StringBuilder(); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | current.append((char) c); |
| 80 | } |
| 81 | |
| 82 | private void finishLine(Map<String, Object> map) { |
| 83 | if (key != null) { |