]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some Javadoc warnings
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 11 Apr 2016 09:18:45 +0000 (11:18 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 11 Apr 2016 09:18:45 +0000 (11:18 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/batch/ResourceFilter.java
sonar-plugin-api/src/main/java/org/sonar/api/issue/batch/IssueFilter.java
sonar-plugin-api/src/main/java/org/sonar/api/server/authentication/UserIdentity.java
sonar-plugin-api/src/main/java/org/sonar/api/server/ws/LocalConnector.java

index 30bc33704813a60429ca8a5ba8004f56ff8689d5..462d31e0f0ffc07bbd2a75e52f6683c33a626e64 100644 (file)
@@ -29,7 +29,7 @@ import org.sonar.api.resources.Resource;
  * If the method start(), without parameters, exists, then it is executed at startup.
  *
  * @since 1.12
- * @deprecated since 4.2. Analysis is file-system oriented. See {@link org.sonar.api.scan.filesystem.InputFileFilter}
+ * @deprecated since 4.2. Analysis is file-system oriented. See {@link org.sonar.api.batch.fs.InputFileFilter}
  */
 @Deprecated
 @BatchSide
index 77d9db0b7fdfc205710380d9cbd230fae92b1884..2b2bd875fdb1dc3c4953a1d7b427608837288730 100644 (file)
  */
 package org.sonar.api.issue.batch;
 
-import org.sonar.api.batch.BatchSide;
 import org.sonar.api.ExtensionPoint;
+import org.sonar.api.batch.BatchSide;
 import org.sonar.api.issue.Issue;
 
 /**
  * <p>An issue filter is an object that allows filtering of {@link Issue}s on batch side, preventing them from being persisted.</p>
  * @since 4.0
- * @deprecated since 5.3. Use {@link org.sonar.api.issue.filter.IssueFilter} instead.
- *
+ * @deprecated since 5.3. Use {@link org.sonar.api.scan.issue.filter.IssueFilter} instead.
  */
 @BatchSide
 @ExtensionPoint
index 119cb2b32a0c4ef76a62fbea91f84e23d4df2550..6de9f5131131bcdabcad0205c79c9aabf639a6c9 100644 (file)
@@ -160,7 +160,7 @@ public final class UserIdentity {
      * <ul>
      *   <li>When groups are not empty, group membership is synchronized when user logs in :
      *   <ul>
-     *     <li>User won't belong anymore to a group that is not in the list (even the default group defined in {@link CoreProperties.CORE_DEFAULT_GROUP})</li>
+     *     <li>User won't belong anymore to a group that is not in the list (even the default group defined in {@link CoreProperties#CORE_DEFAULT_GROUP})</li>
      *     <li>User will belong only to groups that exist in SonarQube</li>
      *     <li>Groups that don't exist in SonarQube are silently ignored</li>
      *   </ul>
index cf4075d61d807d313da876a165b63dbf05bc1499..9ba6167ec96def78c53ca9ce6f8c5e62932f2cf7 100644 (file)
@@ -104,7 +104,6 @@ public interface LocalConnector {
 
     /**
      * @see Response#setHeader(String, String)
-     * @return
      */
     @CheckForNull
     String getHeader(String name);