This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-vfs.git
commit d0ade60ac1d146883b61715130db0e35ad617ae5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jul 28 15:14:46 2022 -0400 Use final --- .../main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java index 1d9df789..f3d4b443 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java @@ -275,7 +275,7 @@ public class SftpFileSystem extends AbstractFileSystem { * @param output The output from the command * @return the (numeric) group IDs. */ - int[] parseGroupIdOutput(StringBuilder output) { + int[] parseGroupIdOutput(final StringBuilder output) { // Retrieve the different groups final String[] groups = output.toString().trim().split("\\s+");