mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-10 09:06:13 +00:00
[JAVA] Address [rawtypes] and [this-escape] warnings in generated API clients (#20466)
* Address [rawtypes] and [this-escape] warnings in generated API clients * Commit updated sample files
This commit is contained in:
@@ -633,7 +633,7 @@ public class ApiClient extends JavaTimeFormatter {
|
||||
* @param value The value of the parameter.
|
||||
* @return A list of {@code Pair} objects.
|
||||
*/
|
||||
public List<Pair> parameterToPairs(String collectionFormat, String name, Collection value) {
|
||||
public List<Pair> parameterToPairs(String collectionFormat, String name, Collection<?> value) {
|
||||
List<Pair> params = new ArrayList<Pair>();
|
||||
|
||||
// preconditions
|
||||
|
||||
Reference in New Issue
Block a user