diff src/ch/ethz/ssh2/PtySettings.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
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/PtySettings.java	Wed Jul 30 12:09:51 2014 -0700
+++ b/src/ch/ethz/ssh2/PtySettings.java	Wed Jul 30 14:16:58 2014 -0700
@@ -10,38 +10,37 @@
  * the drawable area of the window. The dimension parameters are only
  * informational. The encoding of terminal modes (parameter
  * <code>terminal_modes</code>) is described in RFC4254.
- * 
+ *
  * @author Christian
  */
-public class PtySettings
-{
-	/**
-	 * TERM environment variable value (e.g., vt100)
-	 */
-	public String term;
+public class PtySettings {
+    /**
+     * TERM environment variable value (e.g., vt100)
+     */
+    public String term;
 
-	/**
-	 * Terminal width, characters (e.g., 80)
-	 */
-	public int term_width_characters;
+    /**
+     * Terminal width, characters (e.g., 80)
+     */
+    public int term_width_characters;
+
+    /**
+     * Terminal height, rows (e.g., 24)
+     */
+    public int term_height_characters;
 
-	/**
-	 * Terminal height, rows (e.g., 24)
-	 */
-	public int term_height_characters;
-
-	/**
-	 * Terminal width, pixels (e.g., 640)
-	 */
-	public int term_width_pixels;
+    /**
+     * Terminal width, pixels (e.g., 640)
+     */
+    public int term_width_pixels;
 
-	/**
-	 * Terminal height, pixels (e.g., 480)
-	 */
-	public int term_height_pixels;
+    /**
+     * Terminal height, pixels (e.g., 480)
+     */
+    public int term_height_pixels;
 
-	/**
-	 * Encoded terminal modes
-	 */
-	public byte[] terminal_modes;
+    /**
+     * Encoded terminal modes
+     */
+    public byte[] terminal_modes;
 }