@@ -273,19 +273,19 @@ private static Map<ObjectNode, byte[]> maps() {
273273 ObjectNode one = om .createObjectNode ();
274274 one .put ("en" , "Foo" );
275275 maps .put (one , new byte []{(byte ) 0xe1 , /* en */ 0x42 , 0x65 , 0x6e ,
276- /* Foo */ 0x43 , 0x46 , 0x6f , 0x6f });
276+ /* Foo */ 0x43 , 0x46 , 0x6f , 0x6f });
277277
278278 ObjectNode two = om .createObjectNode ();
279279 two .put ("en" , "Foo" );
280280 two .put ("zh" , "人" );
281281 maps .put (two , new byte []{(byte ) 0xe2 ,
282- /* en */
282+ /* en */
283283 0x42 , 0x65 , 0x6e ,
284- /* Foo */
284+ /* Foo */
285285 0x43 , 0x46 , 0x6f , 0x6f ,
286- /* zh */
286+ /* zh */
287287 0x42 , 0x7a , 0x68 ,
288- /* 人 */
288+ /* 人 */
289289 0x43 , (byte ) 0xe4 , (byte ) 0xba , (byte ) 0xba });
290290
291291 ObjectNode nested = om .createObjectNode ();
@@ -294,11 +294,11 @@ private static Map<ObjectNode, byte[]> maps() {
294294 maps .put (nested , new byte []{(byte ) 0xe1 , /* name */
295295 0x44 , 0x6e , 0x61 , 0x6d , 0x65 , (byte ) 0xe2 ,/* en */
296296 0x42 , 0x65 , 0x6e ,
297- /* Foo */
297+ /* Foo */
298298 0x43 , 0x46 , 0x6f , 0x6f ,
299- /* zh */
299+ /* zh */
300300 0x42 , 0x7a , 0x68 ,
301- /* 人 */
301+ /* 人 */
302302 0x43 , (byte ) 0xe4 , (byte ) 0xba , (byte ) 0xba });
303303
304304 ObjectNode guess = om .createObjectNode ();
@@ -308,11 +308,11 @@ private static Map<ObjectNode, byte[]> maps() {
308308 guess .set ("languages" , languages );
309309 maps .put (guess , new byte []{(byte ) 0xe1 ,/* languages */
310310 0x49 , 0x6c , 0x61 , 0x6e , 0x67 , 0x75 , 0x61 , 0x67 , 0x65 , 0x73 ,
311- /* array */
311+ /* array */
312312 0x2 , 0x4 ,
313- /* en */
313+ /* en */
314314 0x42 , 0x65 , 0x6e ,
315- /* zh */
315+ /* zh */
316316 0x42 , 0x7a , 0x68 });
317317
318318 return maps ;
@@ -325,16 +325,16 @@ private static Map<ArrayNode, byte[]> arrays() {
325325 ArrayNode f1 = om .createArrayNode ();
326326 f1 .add ("Foo" );
327327 arrays .put (f1 , new byte []{0x1 , 0x4 ,
328- /* Foo */
328+ /* Foo */
329329 0x43 , 0x46 , 0x6f , 0x6f });
330330
331331 ArrayNode f2 = om .createArrayNode ();
332332 f2 .add ("Foo" );
333333 f2 .add ("人" );
334334 arrays .put (f2 , new byte []{0x2 , 0x4 ,
335- /* Foo */
335+ /* Foo */
336336 0x43 , 0x46 , 0x6f , 0x6f ,
337- /* 人 */
337+ /* 人 */
338338 0x43 , (byte ) 0xe4 , (byte ) 0xba , (byte ) 0xba });
339339
340340 ArrayNode empty = om .createArrayNode ();
0 commit comments