Please help change the @see tag sequence in the PropertyKey.isRemoved method documentation to the correct order.
/**
* Returns whether or not a property key has been removed from use.
*
* If a PropertyKey or {@link Template} is deemed as "Removed" it will exist within
* {@link RemovedKey}. This method can be used to detect if a key being utilized has been removed.
*
* @param key the property key to check
* @return true this property key is removed, false otherwise
* @see RemovedKey
* @see #isDeprecated(alluxio.conf.PropertyKey)
* @see Deprecated
*/
public static boolean isRemoved(String key) {
return RemovedKey.isRemoved(key);
}
From the Java doc style that we follow https://www.oracle.com/technical-resources/articles/java/javadoc-tool.html The
@see
tag sequence should bePlease help change the
@see
tag sequence in the PropertyKey.isRemoved method documentation to the correct order.