1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-26 13:34:51 +02:00

SMACK-327 Made getFeatures() method public.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@12007 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
rcollier 2010-12-04 16:28:52 +00:00
parent e3962d15ae
commit 65d3847670

View file

@ -62,7 +62,7 @@ public class DiscoverInfo extends IQ {
*
* @return an Iterator on the discovered features of an XMPP entity
*/
Iterator<Feature> getFeatures() {
public Iterator<Feature> getFeatures() {
synchronized (features) {
return Collections.unmodifiableList(features).iterator();
}