@@ -438,18 +438,18 @@ private void processBeanValue(
438438 attrKeys = new LinkedList <>(attrKeys );
439439 attrKeys .add (attrName );
440440 for (String key : type .keySet ()) {
441- String typ = type .getType (key ).getTypeName ();
442- Object valu = composite .get (key );
441+ String typeName = type .getType (key ).getTypeName ();
442+ Object compositeValue = composite .get (key );
443443 processBeanValue (
444444 objectName ,
445445 domain ,
446446 beanProperties ,
447447 attributesAsLabelsWithValues ,
448448 attrKeys ,
449449 key ,
450- typ ,
450+ typeName ,
451451 type .getDescription (),
452- valu );
452+ compositeValue );
453453 }
454454 } else if (value instanceof TabularData ) {
455455 // I don't pretend to have a good understanding of TabularData.
@@ -469,9 +469,9 @@ private void processBeanValue(
469469
470470 LinkedList <String > extendedAttrKeys = new LinkedList <>(attrKeys );
471471 extendedAttrKeys .add (attrName );
472- for (Object valu : tds .values ()) {
473- if (valu instanceof CompositeData ) {
474- CompositeData composite = (CompositeData ) valu ;
472+ for (Object compositeDataValue : tds .values ()) {
473+ if (compositeDataValue instanceof CompositeData ) {
474+ CompositeData composite = (CompositeData ) compositeDataValue ;
475475 LinkedHashMap <String , String > l2s = new LinkedHashMap <>(beanProperties );
476476 for (String idx : rowKeys ) {
477477 Object obj = composite .get (idx );
@@ -500,7 +500,7 @@ private void processBeanValue(
500500 }
501501 for (String valueIdx : valueKeys ) {
502502 LinkedList <String > attrNames = extendedAttrKeys ;
503- String typ = type .getType (valueIdx ).getTypeName ();
503+ String typeName = type .getType (valueIdx ).getTypeName ();
504504 String name = valueIdx ;
505505 if (valueIdx .equalsIgnoreCase ("value" )) {
506506 // Skip appending 'value' to the name
@@ -514,7 +514,7 @@ private void processBeanValue(
514514 attributesAsLabelsWithValues ,
515515 attrNames ,
516516 name ,
517- typ ,
517+ typeName ,
518518 type .getDescription (),
519519 composite .get (valueIdx ));
520520 }
0 commit comments