1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-12 14:01:08 +01:00

Javadoc changes for Java 11 compatibility

This commit is contained in:
Florian Schmaus 2019-07-19 18:10:36 +02:00
parent 8fa90113c9
commit 91ec6cc955
58 changed files with 177 additions and 177 deletions

View file

@ -70,7 +70,7 @@ public class JivePropertiesManager {
*
* @param packet
* @param name
* @return the property or <tt>null</tt> if none found.
* @return the property or <code>null</code> if none found.
*/
public static Object getProperty(Stanza packet, String name) {
Object res = null;

View file

@ -60,13 +60,13 @@ public class JivePropertiesExtension implements ExtensionElement {
}
/**
* Returns the stanza property with the specified name or <tt>null</tt> if the
* Returns the stanza property with the specified name or <code>null</code> if the
* property doesn't exist. Property values that were originally primitives will
* be returned as their object equivalent. For example, an int property will be
* returned as an Integer, a double as a Double, etc.
*
* @param name the name of the property.
* @return the property, or <tt>null</tt> if the property doesn't exist.
* @return the property, or <code>null</code> if the property doesn't exist.
*/
public synchronized Object getProperty(String name) {
if (properties == null) {