@@ -130,11 +130,13 @@ public static void encode(
130130 .next ().speed (75 ).mpg (40.0f );
131131
132132 final  CarEncoder .PerformanceFiguresEncoder  perfFigures  = car .performanceFiguresCount (2 );
133-  perfFigures .next ().octaneRating ((short )95 )
133+  perfFigures 
134+  .next ().octaneRating ((short )95 )
134135 .accelerationCount (3 ).next ().mph (30 ).seconds (4.0f )
135136 .next ().mph (60 ).seconds (7.5f )
136137 .next ().mph (100 ).seconds (12.2f );
137-  perfFigures .next ().octaneRating ((short )99 )
138+  perfFigures 
139+  .next ().octaneRating ((short )99 )
138140 .accelerationCount (3 ).next ().mph (30 ).seconds (3.8f )
139141 .next ().mph (60 ).seconds (7.1f )
140142 .next ().mph (100 ).seconds (11.8f );
@@ -239,9 +241,9 @@ private static void perfTestEncode(final int runNumber)
239241 System .out .printf (
240242 "%d - %d(ns) average duration for %s.testEncode() - message encodedLength %d\n " ,
241243 runNumber ,
242-  ( totalDuration  / reps ) ,
244+  totalDuration  / reps ,
243245 benchmark .getClass ().getName (),
244-  ( state .carEncoder .encodedLength () + state .messageHeaderEncoder .encodedLength () ));
246+  state .carEncoder .encodedLength () + state .messageHeaderEncoder .encodedLength ());
245247 }
246248
247249 private  static  void  perfTestDecode (final  int  runNumber )
@@ -261,8 +263,8 @@ private static void perfTestDecode(final int runNumber)
261263 System .out .printf (
262264 "%d - %d(ns) average duration for %s.testDecode() - message encodedLength %d\n " ,
263265 runNumber ,
264-  ( totalDuration  / reps ) ,
266+  totalDuration  / reps ,
265267 benchmark .getClass ().getName (),
266-  ( state .carDecoder .encodedLength () + state .messageHeaderDecoder .encodedLength () ));
268+  state .carDecoder .encodedLength () + state .messageHeaderDecoder .encodedLength ());
267269 }
268270}
0 commit comments