From deca64c5258a07afa7aa9b7c32ab46ad5ba651fe Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Tue, 20 Jan 2009 22:46:48 +0000 Subject: 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 --- src/com/trilead/ssh2/packets/PacketSessionPtyResize.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/com/trilead/ssh2/packets') 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; } -- cgit v1.2.3