Changed method and constructor from protected to default access to clean up Javadocs.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2091 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-09-18 21:37:52 +00:00 committed by mtucker
parent daf6acd2ca
commit 89fa351758
1 changed files with 4 additions and 4 deletions

View File

@ -107,9 +107,9 @@ public class XMPPConnection {
} }
private JFrame debugFrame = null; private JFrame debugFrame = null;
protected String host; String host;
protected int port; int port;
protected Socket socket; Socket socket;
String connectionID; String connectionID;
private String user = null; private String user = null;
@ -129,7 +129,7 @@ public class XMPPConnection {
/** /**
* Constructor for use by classes extending this one. * Constructor for use by classes extending this one.
*/ */
protected XMPPConnection() { XMPPConnection() {
} }