You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/07/28 19:18:31 UTC

[commons-vfs] 04/06: Use final

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 <ga...@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+");