comparison src/ch/ethz/ssh2/ServerConnectionCallback.java @ 307:071eccdff8ea ganymed

fix java formatting
author Carl Byington <carl@five-ten-sg.com>
date Wed, 30 Jul 2014 14:16:58 -0700
parents 91a31873c42a
children
comparison
equal deleted inserted replaced
305:d2b303406d63 307:071eccdff8ea
2 * Copyright (c) 2012-2013 Christian Plattner. All rights reserved. 2 * Copyright (c) 2012-2013 Christian Plattner. All rights reserved.
3 * Please refer to the LICENSE.txt for licensing details. 3 * Please refer to the LICENSE.txt for licensing details.
4 */ 4 */
5 package ch.ethz.ssh2; 5 package ch.ethz.ssh2;
6 6
7 public interface ServerConnectionCallback 7 public interface ServerConnectionCallback {
8 { 8 public ServerSessionCallback acceptSession(ServerSession session);
9 public ServerSessionCallback acceptSession(ServerSession session);
10 } 9 }