mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 22:32:06 +01:00
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:
parent
daf6acd2ca
commit
89fa351758
1 changed files with 4 additions and 4 deletions
|
@ -107,9 +107,9 @@ public class XMPPConnection {
|
|||
}
|
||||
private JFrame debugFrame = null;
|
||||
|
||||
protected String host;
|
||||
protected int port;
|
||||
protected Socket socket;
|
||||
String host;
|
||||
int port;
|
||||
Socket socket;
|
||||
|
||||
String connectionID;
|
||||
private String user = null;
|
||||
|
@ -129,7 +129,7 @@ public class XMPPConnection {
|
|||
/**
|
||||
* Constructor for use by classes extending this one.
|
||||
*/
|
||||
protected XMPPConnection() {
|
||||
XMPPConnection() {
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue