mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Make AbstractXMPPConnection.getConfiguration public
This commit is contained in:
parent
d54dafc499
commit
a997283304
1 changed files with 6 additions and 1 deletions
|
@ -300,7 +300,12 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
|||
config = configuration;
|
||||
}
|
||||
|
||||
protected ConnectionConfiguration getConfiguration() {
|
||||
/**
|
||||
* Get the connection configuration used by this connection.
|
||||
*
|
||||
* @return the connection configuration.
|
||||
*/
|
||||
public ConnectionConfiguration getConfiguration() {
|
||||
return config;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue