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
1 changed files with 1 additions and 1 deletions

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();
}