Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: I-Al-Istannen <[email protected]>
  • Loading branch information
MartinWitt and I-Al-Istannen committed Jan 12, 2024
1 parent 732fb2f commit dad7f4f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/spoon_javadoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To use spoon-javadoc, add the following dependency to your `pom.xml`:
<dependency>
<groupId>fr.inria.gforge.spoon</groupId>
<artifactId>spoon-javadoc</artifactId>
<version>$CurrentVersion</version>
<version>$currentVersion</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/spoon/javadoc/internal/JavadocBlockTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* <p>Examples: <code>@see AnotherClass</code> <code>@since v0.0.1</code> <code>@author Jim O'Java
* </code>
* @deprecated Use the new javadoc parser submodule, See <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
* @deprecated Use the new javadoc parser submodule, see <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
*/
@Deprecated(forRemoval = true, since = "11.0.0")
public class JavadocBlockTag implements Serializable {

Check warning on line 31 in src/main/java/spoon/javadoc/internal/JavadocBlockTag.java

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Deprecated member is still used

Deprecated member 'JavadocBlockTag' is still used
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* A javadoc text, potentially containing inline tags.
* @deprecated Use the new javadoc parser submodule, See <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
* @deprecated Use the new javadoc parser submodule, see <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
*/
@Deprecated(forRemoval = true, since = "11.0.0")
public class JavadocDescription implements Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* <p>So for example <code>a text</code> or <code>{@link String}</code> could be valid description
* elements.
* @deprecated Use the new javadoc parser submodule, See <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
* @deprecated Use the new javadoc parser submodule, see <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
*/
@Deprecated(forRemoval = true, since = "11.0.0")
public interface JavadocDescriptionElement {

Check warning on line 25 in src/main/java/spoon/javadoc/internal/JavadocDescriptionElement.java

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Deprecated member is still used

Deprecated member 'JavadocDescriptionElement' is still used
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/spoon/javadoc/internal/JavadocInlineTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* An inline tag contained in a Javadoc description.
*
* <p>For example <code>{@link String}</code>
* @deprecated Use the new javadoc parser submodule, See <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
* @deprecated Use the new javadoc parser submodule, see <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
*/
@Deprecated(forRemoval = true, since = "11.0.0")
public class JavadocInlineTag implements JavadocDescriptionElement, Serializable {

Check warning on line 26 in src/main/java/spoon/javadoc/internal/JavadocInlineTag.java

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Deprecated member is still used

Deprecated member 'JavadocInlineTag' is still used

Check failure on line 26 in src/main/java/spoon/javadoc/internal/JavadocInlineTag.java

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Usage of API marked for removal

'spoon.javadoc.internal.JavadocDescriptionElement' is deprecated since version 11.0.0 and marked for removal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/spoon/javadoc/internal/JavadocSnippet.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* <p>For example in <code>A class totally unrelated to {@link String}, I swear!</code> we would
* have two snippets: one before and one after the inline tag (<code>{@link String}</code>).
* @deprecated Use the new javadoc parser submodule, See <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
* @deprecated Use the new javadoc parser submodule, see <a href="https://spoon.gforge.inria.fr/spoon_javadoc.html">Javadoc Parser</a>.
*/
@Deprecated(forRemoval = true, since = "11.0.0")
public class JavadocSnippet implements JavadocDescriptionElement, Serializable {

Check failure on line 27 in src/main/java/spoon/javadoc/internal/JavadocSnippet.java

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Usage of API marked for removal

'spoon.javadoc.internal.JavadocDescriptionElement' is deprecated since version 11.0.0 and marked for removal
Expand Down

0 comments on commit dad7f4f

Please sign in to comment.