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[])
462462 valueStr = Arrays .toString ((byte []) value );
463463 else if (value instanceof short [])
464464 valueStr = Arrays .toString ((short []) value );
465- else if (value instanceof byte [])
466- valueStr = Arrays .toString ((byte []) value );
467465 else if (value instanceof char [])
468466 valueStr = Arrays .toString ((char []) value );
469467 else if (value instanceof boolean [])
470468 valueStr = Arrays .toString ((boolean []) value );
471469 else if (value instanceof float [])
472- valueStr = Arrays .toString ((boolean []) value );
470+ valueStr = Arrays .toString ((float []) value );
473471 else if (value instanceof double [])
474- valueStr = Arrays .toString ((boolean []) value );
472+ valueStr = Arrays .toString ((double []) value );
475473 else if (value instanceof Object [])
476474 valueStr = Arrays .deepToString ((Object []) value );
477475 else
You can’t perform that action at this time.
0 commit comments