From ad455876f68bcc6f475fc8142ed97c4d5f72d4c5 Mon Sep 17 00:00:00 2001 From: Richard Harris Date: Thu, 14 Nov 2024 17:19:44 +0000 Subject: [PATCH] Javadoc warning fixes highlighted in the build --- .../core/refactoring/operations/javapattern/Substitute.java | 2 +- .../main/java/org/alfasoftware/astra/core/utils/AstraUtils.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/astra-core/src/main/java/org/alfasoftware/astra/core/refactoring/operations/javapattern/Substitute.java b/astra-core/src/main/java/org/alfasoftware/astra/core/refactoring/operations/javapattern/Substitute.java index 0f70b99..02ec9d0 100644 --- a/astra-core/src/main/java/org/alfasoftware/astra/core/refactoring/operations/javapattern/Substitute.java +++ b/astra-core/src/main/java/org/alfasoftware/astra/core/refactoring/operations/javapattern/Substitute.java @@ -1,7 +1,7 @@ package org.alfasoftware.astra.core.refactoring.operations.javapattern; /** - * This is used to annotate methods which should be subsituted as part of a {@link @JavaPattern} rewrite + * This is used to annotate methods which should be substituted as part of a {@link JavaPattern} rewrite */ public @interface Substitute { } diff --git a/astra-core/src/main/java/org/alfasoftware/astra/core/utils/AstraUtils.java b/astra-core/src/main/java/org/alfasoftware/astra/core/utils/AstraUtils.java index cddaba2..c6aaf09 100644 --- a/astra-core/src/main/java/org/alfasoftware/astra/core/utils/AstraUtils.java +++ b/astra-core/src/main/java/org/alfasoftware/astra/core/utils/AstraUtils.java @@ -291,7 +291,7 @@ public static String getFullyQualifiedName(ClassInstanceCreation cic) { /** * Returns the Java identifier representing the simple name from a String representation of a qualified name. - * The JLS section 3.8 ({@link https://docs.oracle.com/javase/specs/jls/se11/html/jls-3.html#jls-3.8}) defines an identifier as + * The JLS section 3.8 (see the oracle documentation) defines an identifier as * "an unlimited-length sequence of Java letters and Java digits, the first of which must be a Java letter." * "The 'Java letters' include uppercase and lowercase ASCII Latin letters A-Z (\u0041-\u005a), and a-z (\u0061-\u007a), and, * for historical reasons, the ASCII dollar sign ($, or \u0024) and underscore (_, or \u005f).