aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/trilead/ssh2/packets
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2009-01-20 22:46:48 +0000
committerKenny Root <kenny@the-b.org>2009-01-20 22:46:48 +0000
commitdeca64c5258a07afa7aa9b7c32ab46ad5ba651fe (patch)
tree0af6f852520ecb945d787b744d20eb81b95efd19 /src/com/trilead/ssh2/packets
parent3cfb3df4c46af1e93d95326c65bacaff54d63f5e (diff)
downloadconnectbot-deca64c5258a07afa7aa9b7c32ab46ad5ba651fe.tar.gz
connectbot-deca64c5258a07afa7aa9b7c32ab46ad5ba651fe.tar.bz2
connectbot-deca64c5258a07afa7aa9b7c32ab46ad5ba651fe.zip
Bug scrub
* Try to be better about unsynchronized accesses * Don't expose references to arrays in our beans * Make sure we don't dereference null pointers * Update version string before calling aapt
Diffstat (limited to 'src/com/trilead/ssh2/packets')
-rw-r--r--src/com/trilead/ssh2/packets/PacketSessionPtyResize.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/com/trilead/ssh2/packets/PacketSessionPtyResize.java b/src/com/trilead/ssh2/packets/PacketSessionPtyResize.java
index 20d35cd..27b5f00 100644
--- a/src/com/trilead/ssh2/packets/PacketSessionPtyResize.java
+++ b/src/com/trilead/ssh2/packets/PacketSessionPtyResize.java
@@ -5,14 +5,12 @@ public class PacketSessionPtyResize {
public int recipientChannelID;
public boolean wantReply;
- public String term;
public int width;
public int height;
public PacketSessionPtyResize(int recipientChannelID, boolean wantReply, int width, int height) {
this.recipientChannelID = recipientChannelID;
this.wantReply = wantReply;
- this.term = term;
this.width = width;
this.height = height;
}