@@ -92,8 +92,9 @@ protected void jasmPrint(int index, int size) throws IOException {
9292BootstrapMethodBreakPositions )
9393 );
9494 }
95+ printIndent (PadRight (" " ,TABLE_PADDING )).print ("{ " );
9596if (numBsmArgs >0 ) {
96- printIndent ( PadRight ( " " , TABLE_PADDING )). println ("{" );
97+ println ();
9798incIndent (2 );
9899if (printCPIndex ) {
99100for (int i =0 ;i <numBsmArgs ;i ++) {
@@ -119,8 +120,9 @@ protected void jasmPrint(int index, int size) throws IOException {
119120BootstrapArgumentsBreakPositions ));
120121 }
121122decIndent (2 );
122- printIndent (PadRight (" " ,TABLE_PADDING )). println ( "}" ) ;
123+ printIndent (PadRight (" " ,TABLE_PADDING ));
123124 }
125+ println ("}" );
124126if (index <size -1 )
125127println ();
126128 }
@@ -186,7 +188,6 @@ protected void tablePrint(int index, int size) throws IOException {
186188 }
187189 }
188190
189-
190191private BsmInfo getBsmInfo () {
191192String strBsm ;
192193ConstantPool .Constant <?>cnt =owner .pool .getConst (bsmRef );
@@ -196,13 +197,14 @@ private BsmInfo getBsmInfo() {
196197strBsm =cpx .stringVal () +";" ;
197198 }else {
198199strBsm =owner .environment .getInfo ("info.corrupted_bootstrap_method_ref" );
199- if (!printCPIndex ) {
200+ if (!printCPIndex ) {
200201strBsm =PadRight ("#%d" .formatted (bsmRef ),CIRCULAR_COMMENT_OFFSET ).concat (" // " ).concat (strBsm );
201202 }
202203 }
203204BsmInfo bsmInfo =new BsmInfo (strBsm ,cpx2Const );
204205return bsmInfo ;
205206 }
206207
207- private record BsmInfo (String strBsm ,ConstantPool .CPX2 cpx2Const ) {}
208+ private record BsmInfo (String strBsm ,ConstantPool .CPX2 cpx2Const ) {
209+ }
208210}