You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by gn...@apache.org on 2014/10/16 23:19:10 UTC

[2/8] git commit: Remove unnecessary semicolon

Remove unnecessary semicolon

Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/1860e1d2
Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/1860e1d2
Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/1860e1d2

Branch: refs/heads/master
Commit: 1860e1d284c868c4edd65aab3c50e993d3f32ec5
Parents: fe4e2ff
Author: Guillaume Nodet <gn...@apache.org>
Authored: Thu Oct 16 01:55:41 2014 +0200
Committer: Guillaume Nodet <gn...@apache.org>
Committed: Thu Oct 16 01:55:41 2014 +0200

----------------------------------------------------------------------
 sshd-core/src/main/java/org/apache/sshd/SshClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/1860e1d2/sshd-core/src/main/java/org/apache/sshd/SshClient.java
----------------------------------------------------------------------
diff --git a/sshd-core/src/main/java/org/apache/sshd/SshClient.java b/sshd-core/src/main/java/org/apache/sshd/SshClient.java
index 97a6607..27ba0da 100644
--- a/sshd-core/src/main/java/org/apache/sshd/SshClient.java
+++ b/sshd-core/src/main/java/org/apache/sshd/SshClient.java
@@ -473,7 +473,7 @@ public class SshClient extends AbstractFactoryManager implements ClientFactoryMa
                                 }
                             });
                         }
-                    };
+                    }
                     provider = new KeyPairProviderLoader().call();
                 }
             } catch (Throwable t) {