comparison src/ch/ethz/ssh2/channel/X11ServerData.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
7 /** 7 /**
8 * X11ServerData. Data regarding an x11 forwarding target. 8 * X11ServerData. Data regarding an x11 forwarding target.
9 * 9 *
10 * @author Christian Plattner 10 * @author Christian Plattner
11 * @version 2.50, 03/15/10 11 * @version 2.50, 03/15/10
12 * 12 *
13 */ 13 */
14 public class X11ServerData 14 public class X11ServerData {
15 { 15 public String hostname;
16 public String hostname; 16 public int port;
17 public int port; 17 public byte[] x11_magic_cookie; /* not the remote (fake) one, the local (real) one */
18 public byte[] x11_magic_cookie; /* not the remote (fake) one, the local (real) one */
19 } 18 }