@@ -574,7 +574,7 @@ private static MapNode classToTree(ClassModel clm, Verbosity verbosity) {
574
574
list ("flags" , "flag" , clm .flags ().flags ().stream ().map (AccessFlag ::name )),
575
575
leaf ("superclass" , clm .superclass ().map (ClassEntry ::asInternalName ).orElse ("" )),
576
576
list ("interfaces" , "interface" , clm .interfaces ().stream ().map (ClassEntry ::asInternalName )),
577
- list ("attributes" , "attribute" , clm .attributes ().stream ().map (Attribute ::attributeName )))
577
+ list ("attributes" , "attribute" , clm .attributes ().stream ().map (Attribute ::attributeName ). map ( Utf8Entry :: stringValue ) ))
578
578
.with (constantPoolToTree (clm .constantPool (), verbosity ))
579
579
.with (attributesToTree (clm .attributes (), verbosity ))
580
580
.with (new ListNodeImpl (BLOCK , "fields" , clm .fields ().stream ().map (f ->
@@ -672,7 +672,7 @@ private static MapNode fieldToTree(FieldModel f, Verbosity verbosity) {
672
672
"flag" , f .flags ().flags ().stream ().map (AccessFlag ::name )),
673
673
leaf ("field type" , f .fieldType ().stringValue ()),
674
674
list ("attributes" ,
675
- "attribute" , f .attributes ().stream ().map (Attribute ::attributeName )))
675
+ "attribute" , f .attributes ().stream ().map (Attribute ::attributeName ). map ( Utf8Entry :: stringValue ) ))
676
676
.with (attributesToTree (f .attributes (), verbosity ));
677
677
}
678
678
@@ -683,7 +683,7 @@ public static MapNode methodToTree(MethodModel m, Verbosity verbosity) {
683
683
"flag" , m .flags ().flags ().stream ().map (AccessFlag ::name )),
684
684
leaf ("method type" , m .methodType ().stringValue ()),
685
685
list ("attributes" ,
686
- "attribute" , m .attributes ().stream ().map (Attribute ::attributeName )))
686
+ "attribute" , m .attributes ().stream ().map (Attribute ::attributeName ). map ( Utf8Entry :: stringValue ) ))
687
687
.with (attributesToTree (m .attributes (), verbosity ))
688
688
.with (codeToTree ((CodeAttribute )m .code ().orElse (null ), verbosity ));
689
689
}
@@ -694,7 +694,7 @@ private static MapNode codeToTree(CodeAttribute com, Verbosity verbosity) {
694
694
codeNode .with (leaf ("max stack" , com .maxStack ()));
695
695
codeNode .with (leaf ("max locals" , com .maxLocals ()));
696
696
codeNode .with (list ("attributes" ,
697
- "attribute" , com .attributes ().stream ().map (Attribute ::attributeName )));
697
+ "attribute" , com .attributes ().stream ().map (Attribute ::attributeName ). map ( Utf8Entry :: stringValue ) ));
698
698
var stackMap = new MapNodeImpl (BLOCK , "stack map frames" );
699
699
var visibleTypeAnnos = new LinkedHashMap <Integer , List <TypeAnnotation >>();
700
700
var invisibleTypeAnnos = new LinkedHashMap <Integer , List <TypeAnnotation >>();
@@ -996,7 +996,7 @@ private static Node[] attributesToTree(List<Attribute<?>> attributes, Verbosity
996
996
"name" , rc .name ().stringValue (),
997
997
"type" , rc .descriptor ().stringValue ()))
998
998
.with (list ("attributes" , "attribute" , rc .attributes ().stream ()
999
- .map (Attribute ::attributeName )))
999
+ .map (Attribute ::attributeName ). map ( Utf8Entry :: stringValue ) ))
1000
1000
.with (attributesToTree (rc .attributes (), verbosity )))));
1001
1001
case AnnotationDefaultAttribute ada ->
1002
1002
nodes .add (new MapNodeImpl (FLOW , "annotation default" ).with (elementValueToTree (ada .defaultValue ())));
1 commit comments
openjdk-notifier[bot] commentedon Nov 15, 2024
Review
Issues