@@ -2501,7 +2501,7 @@ public CommandFuture<FileInfo> getFileInfo(String filePath, int channelId, Strin
25012501 * @see FileInfo#getPath()
25022502 * @see Channel#getId()
25032503 */
2504- public CommandFuture <List <FileInfo >> getFileInfos (String filePaths [] , int channelId ) {
2504+ public CommandFuture <List <FileInfo >> getFileInfos (String [] filePaths , int channelId ) {
25052505 return getFileInfos (filePaths , channelId , null );
25062506 }
25072507
@@ -2527,7 +2527,7 @@ public CommandFuture<List<FileInfo>> getFileInfos(String filePaths[], int channe
25272527 * @see FileInfo#getPath()
25282528 * @see Channel#getId()
25292529 */
2530- public CommandFuture <List <FileInfo >> getFileInfos (String filePaths [] , int channelId , String channelPassword ) {
2530+ public CommandFuture <List <FileInfo >> getFileInfos (String [] filePaths , int channelId , String channelPassword ) {
25312531 Command cmd = FileCommands .ftGetFileInfo (channelId , channelPassword , filePaths );
25322532 return executeAndTransform (cmd , FileInfo ::new );
25332533 }
@@ -2556,7 +2556,7 @@ public CommandFuture<List<FileInfo>> getFileInfos(String filePaths[], int channe
25562556 * @see FileInfo#getPath()
25572557 * @see Channel#getId()
25582558 */
2559- public CommandFuture <List <FileInfo >> getFileInfos (String filePaths [] , int [] channelIds , String [] channelPasswords ) {
2559+ public CommandFuture <List <FileInfo >> getFileInfos (String [] filePaths , int [] channelIds , String [] channelPasswords ) {
25602560 Command cmd = FileCommands .ftGetFileInfo (channelIds , channelPasswords , filePaths );
25612561 return executeAndTransform (cmd , FileInfo ::new );
25622562 }
0 commit comments