This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
The following commit(s) were added to refs/heads/master by this push:
new d98e711 Autoformat code
d98e711 is described below
commit d98e711ca94f9dd84eed8aad1a210b040e8af44d
Author: Guillaume Nodet <[email protected]>
AuthorDate: Tue May 26 16:20:09 2020 +0200
Autoformat code
---
.../pubkey/AuthorizedKeyEntriesPublickeyAuthenticator.java | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git
a/sshd-core/src/main/java/org/apache/sshd/server/auth/pubkey/AuthorizedKeyEntriesPublickeyAuthenticator.java
b/sshd-core/src/main/java/org/apache/sshd/server/auth/pubkey/AuthorizedKeyEntriesPublickeyAuthenticator.java
index 0967a28..8064971 100644
---
a/sshd-core/src/main/java/org/apache/sshd/server/auth/pubkey/AuthorizedKeyEntriesPublickeyAuthenticator.java
+++
b/sshd-core/src/main/java/org/apache/sshd/server/auth/pubkey/AuthorizedKeyEntriesPublickeyAuthenticator.java
@@ -41,16 +41,18 @@ import org.apache.sshd.server.session.ServerSession;
* Records the matched entry under a session attribute.
*/
public class AuthorizedKeyEntriesPublickeyAuthenticator extends
AbstractLoggingBean implements PublickeyAuthenticator {
- public static final AttributeRepository.AttributeKey<AuthorizedKeyEntry>
AUTHORIZED_KEY = new AttributeRepository.AttributeKey<>();
+ public static final AttributeRepository.AttributeKey<AuthorizedKeyEntry>
AUTHORIZED_KEY
+ = new AttributeRepository.AttributeKey<>();
private Map<AuthorizedKeyEntry, PublicKey> resolvedKeys;
private Object id;
public AuthorizedKeyEntriesPublickeyAuthenticator(
- Object id, ServerSession session,
- Collection<? extends AuthorizedKeyEntry> entries,
- PublicKeyEntryResolver fallbackResolver)
- throws IOException, GeneralSecurityException {
+ Object id, ServerSession
session,
+ Collection<? extends
AuthorizedKeyEntry> entries,
+ PublicKeyEntryResolver
fallbackResolver)
+
throws IOException,
+
GeneralSecurityException {
this.id = id;
int numEntries = GenericUtils.size(entries);
if (numEntries <= 0) {