1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 22:32:06 +01:00

Make AbstractXMPPConnection.getConfiguration public

This commit is contained in:
Florian Schmaus 2015-06-26 14:04:46 +02:00
parent d54dafc499
commit a997283304

View file

@ -300,7 +300,12 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
config = configuration; config = configuration;
} }
protected ConnectionConfiguration getConfiguration() { /**
* Get the connection configuration used by this connection.
*
* @return the connection configuration.
*/
public ConnectionConfiguration getConfiguration() {
return config; return config;
} }