From 0bd96e51560999f3ab410fcc553f7fd22b9bcdc3 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Mon, 19 Feb 2007 22:24:07 +0000 Subject: [PATCH] Moving variable to private. Why was it protected? git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7199 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/XMPPConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/org/jivesoftware/smack/XMPPConnection.java b/source/org/jivesoftware/smack/XMPPConnection.java index e3136413f..b45d5d57f 100644 --- a/source/org/jivesoftware/smack/XMPPConnection.java +++ b/source/org/jivesoftware/smack/XMPPConnection.java @@ -147,7 +147,7 @@ public class XMPPConnection { Roster roster = null; private AccountManager accountManager = null; - protected SASLAuthentication saslAuthentication = new SASLAuthentication(this); + private SASLAuthentication saslAuthentication = new SASLAuthentication(this); Writer writer; Reader reader;