@@ -2501,7 +2501,7 @@ public CommandFuture<FileInfo> getFileInfo(String filePath, int channelId, Strin
2501
2501
* @see FileInfo#getPath()
2502
2502
* @see Channel#getId()
2503
2503
*/
2504
- public CommandFuture <List <FileInfo >> getFileInfos (String filePaths [] , int channelId ) {
2504
+ public CommandFuture <List <FileInfo >> getFileInfos (String [] filePaths , int channelId ) {
2505
2505
return getFileInfos (filePaths , channelId , null );
2506
2506
}
2507
2507
@@ -2527,7 +2527,7 @@ public CommandFuture<List<FileInfo>> getFileInfos(String filePaths[], int channe
2527
2527
* @see FileInfo#getPath()
2528
2528
* @see Channel#getId()
2529
2529
*/
2530
- public CommandFuture <List <FileInfo >> getFileInfos (String filePaths [] , int channelId , String channelPassword ) {
2530
+ public CommandFuture <List <FileInfo >> getFileInfos (String [] filePaths , int channelId , String channelPassword ) {
2531
2531
Command cmd = FileCommands .ftGetFileInfo (channelId , channelPassword , filePaths );
2532
2532
return executeAndTransform (cmd , FileInfo ::new );
2533
2533
}
@@ -2556,7 +2556,7 @@ public CommandFuture<List<FileInfo>> getFileInfos(String filePaths[], int channe
2556
2556
* @see FileInfo#getPath()
2557
2557
* @see Channel#getId()
2558
2558
*/
2559
- public CommandFuture <List <FileInfo >> getFileInfos (String filePaths [] , int [] channelIds , String [] channelPasswords ) {
2559
+ public CommandFuture <List <FileInfo >> getFileInfos (String [] filePaths , int [] channelIds , String [] channelPasswords ) {
2560
2560
Command cmd = FileCommands .ftGetFileInfo (channelIds , channelPasswords , filePaths );
2561
2561
return executeAndTransform (cmd , FileInfo ::new );
2562
2562
}
0 commit comments