wolfboys commented on code in PR #2912:
URL: 
https://github.com/apache/incubator-streampark/pull/2912#discussion_r1278581125


##########
streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/base/util/CommonUtils.java:
##########
@@ -191,11 +189,11 @@ public static Float toFloat(Object val) {
     return toFloat(val, 0f);
   }
 
-  public static List arrayToList(Object source) {
+  public static List<?> arrayToList(Object source) {
     return Arrays.asList(ObjectUtils.toObjectArray(source));
   }
 
-  public static boolean contains(Iterator iterator, Object element) {
+  public static boolean contains(Iterator<Object> iterator, Object element) {

Review Comment:
   I don't think we need to change here



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to