diff options
author | Brian Hinz <bphinz@users.sourceforge.net> | 2011-10-09 17:58:48 +0000 |
---|---|---|
committer | Brian Hinz <bphinz@users.sourceforge.net> | 2011-10-09 17:58:48 +0000 |
commit | cb7462653011fce57766053ae9e8a2076db10bfd (patch) | |
tree | 9ce117d5076efe916275b3e1d9def563251a16eb /java/com/tigervnc/vncviewer/CConn.java | |
parent | 6a42a371e4b82f30f14cc0eb4ff0eb6c134ba369 (diff) | |
download | tigervnc-cb7462653011fce57766053ae9e8a2076db10bfd.tar.gz tigervnc-cb7462653011fce57766053ae9e8a2076db10bfd.zip |
Fix more unused local variables and static (class) variables and methods being used in instance warnings
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4718 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'java/com/tigervnc/vncviewer/CConn.java')
-rw-r--r-- | java/com/tigervnc/vncviewer/CConn.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/com/tigervnc/vncviewer/CConn.java b/java/com/tigervnc/vncviewer/CConn.java index a375438b..d504eb16 100644 --- a/java/com/tigervnc/vncviewer/CConn.java +++ b/java/com/tigervnc/vncviewer/CConn.java @@ -208,7 +208,7 @@ public class CConn extends CConnection public boolean showMsgBox(int flags, String title, String text) { - StringBuffer titleText = new StringBuffer("VNC Viewer: "+title); + //StringBuffer titleText = new StringBuffer("VNC Viewer: "+title); return true; } @@ -744,7 +744,7 @@ public class CConn extends CConnection /* Process non-VeNCrypt sectypes */ java.util.List<Integer> secTypes = new ArrayList<Integer>(); - secTypes = security.GetEnabledSecTypes(); + secTypes = Security.GetEnabledSecTypes(); for (Iterator i = secTypes.iterator(); i.hasNext();) { switch ((Integer)i.next()) { case Security.secTypeVeNCrypt: @@ -764,7 +764,7 @@ public class CConn extends CConnection /* Process VeNCrypt subtypes */ if (options.secVeNCrypt.isSelected()) { java.util.List<Integer> secTypesExt = new ArrayList<Integer>(); - secTypesExt = security.GetEnabledExtSecTypes(); + secTypesExt = Security.GetEnabledExtSecTypes(); for (Iterator iext = secTypesExt.iterator(); iext.hasNext();) { switch ((Integer)iext.next()) { case Security.secTypePlain: |