File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
scr/src/main/java/org/apache/felix/scr/impl Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -462,16 +462,14 @@ else if (value instanceof byte[])
462
462
valueStr = Arrays .toString ((byte []) value );
463
463
else if (value instanceof short [])
464
464
valueStr = Arrays .toString ((short []) value );
465
- else if (value instanceof byte [])
466
- valueStr = Arrays .toString ((byte []) value );
467
465
else if (value instanceof char [])
468
466
valueStr = Arrays .toString ((char []) value );
469
467
else if (value instanceof boolean [])
470
468
valueStr = Arrays .toString ((boolean []) value );
471
469
else if (value instanceof float [])
472
- valueStr = Arrays .toString ((boolean []) value );
470
+ valueStr = Arrays .toString ((float []) value );
473
471
else if (value instanceof double [])
474
- valueStr = Arrays .toString ((boolean []) value );
472
+ valueStr = Arrays .toString ((double []) value );
475
473
else if (value instanceof Object [])
476
474
valueStr = Arrays .deepToString ((Object []) value );
477
475
else
You can’t perform that action at this time.
0 commit comments