This is an automated email from the ASF dual-hosted git repository.
davidb pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature.git
The following commit(s) were added to refs/heads/master by this push:
new 715fd44 Update format of @see javadoc tags to satisfy javadoc
validation
715fd44 is described below
commit 715fd44b412d9951727c9cb110314953ec245ce9
Author: David Bosschaert <[email protected]>
AuthorDate: Thu Feb 27 12:46:04 2020 +0000
Update format of @see javadoc tags to satisfy javadoc validation
---
src/main/java/org/apache/sling/feature/Configuration.java | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/main/java/org/apache/sling/feature/Configuration.java
b/src/main/java/org/apache/sling/feature/Configuration.java
index bda8b44..386b702 100644
--- a/src/main/java/org/apache/sling/feature/Configuration.java
+++ b/src/main/java/org/apache/sling/feature/Configuration.java
@@ -101,7 +101,7 @@ public class Configuration
* Return the factory pid of a pid if it's a factory configuration
*
* @return The factory pid or {@code null}.
- * @see {@link Configuration#isFactoryConfiguration()}
+ * @see #isFactoryConfiguration()
* @since 1.3
*/
public String getFactoryPid() {
@@ -112,7 +112,7 @@ public class Configuration
* Return the name for a factory configuration if it is a factory
configuration.
*
* @return The name or {@code null}.
- * @see {@link Configuration#isFactoryConfiguration()}
+ * @see #isFactoryConfiguration()
* @since 1.3
*/
public String getName() {
@@ -134,7 +134,7 @@ public class Configuration
*
* @param pid The pid
* @return The factory pid or {@code null}.
- * @see {@link Configuration#isFactoryConfiguration(String)}
+ * @see #isFactoryConfiguration(String)
*/
public static String getFactoryPid(final String pid) {
final int pos = pid.indexOf('~');
@@ -149,7 +149,7 @@ public class Configuration
*
* @param pid The pid
* @return The name or {@code null}.
- * @see {@link Configuration#isFactoryConfiguration(String)}
+ * @see #isFactoryConfiguration(String)
*/
public static String getName(final String pid) {
final int pos = pid.indexOf('~');
@@ -163,7 +163,7 @@ public class Configuration
* Get all properties of the configuration. This method returns a mutable
* dictionary which can be mutated to alter the properties for this
* configuration.
- *
+ *
* @return The properties
*/
public Dictionary<String, Object> getProperties() {
@@ -176,7 +176,7 @@ public class Configuration
* configuration. Managing properties have to start with
* {@code #CONFIGURATOR_PREFIX}. The returned copy is a mutable dictionary
which
* represents a snapshot of the properties at the time this method is
called.
- *
+ *
* @return The configuration properties
*/
public Dictionary<String, Object> getConfigurationProperties() {