Log Message: |
public static String stringConcatWithSep(String sep, Collection<? extends Object> list) {
return stringConcatWithSep(sep, null, list.toArray());
}
" ? extends " hinzugefĆ¼gt... zu oft ist der mir sonst auf Object... gegangen und hat z.B. die Collection<Long> als erstes Obejct gesehen.
|