1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-09 10:19:41 +02:00

Fix javadoc warnings

This commit is contained in:
Florian Schmaus 2015-12-19 13:30:15 +01:00
parent 46f0110949
commit f79a7d9d5f
4 changed files with 8 additions and 5 deletions

View file

@ -131,7 +131,11 @@ public final class Roster extends Manager {
*/
private static SubscriptionMode defaultSubscriptionMode = SubscriptionMode.accept_all;
private static final int INITIAL_DEFAULT_NON_ROSTER_PRESENCE_MAP_SIZE = 1024;
/**
* The initial maximum size of the map holding presence information of entities without an Roster entry. Currently
* {@value #INITIAL_DEFAULT_NON_ROSTER_PRESENCE_MAP_SIZE}.
*/
public static final int INITIAL_DEFAULT_NON_ROSTER_PRESENCE_MAP_SIZE = 1024;
private static int defaultNonRosterPresenceMapMaxSize = INITIAL_DEFAULT_NON_ROSTER_PRESENCE_MAP_SIZE;

View file

@ -75,7 +75,7 @@ public interface RosterListener {
* presence packets will not cause this method to be called.
*
* @param presence the presence that changed.
* @see Roster#getPresence(BareJid)
* @see Roster#getPresence(org.jxmpp.jid.BareJid)
*/
public void presenceChanged(Presence presence);
}