Commit 15a54c67 by 陶光胜

取数平台调整

parent 033a2468
......@@ -84,7 +84,7 @@ public class CsvResultSetHelper implements ResultSetHelper {
}
}
}
return (String[]) list.toArray();
return list.toArray(new String[0]);
}
......@@ -186,7 +186,7 @@ public class CsvResultSetHelper implements ResultSetHelper {
if(CollectionUtils.isNotEmpty(decyptValue)){
result.addAll(decyptValue);
}
return (String[]) result.toArray();
return result.toArray(new String[0]);
}
private boolean isName(String columnName){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment