diff --git a/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyBuilder.java b/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyBuilder.java index ae106f8e21..f5ea68375e 100644 --- a/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyBuilder.java +++ b/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyBuilder.java @@ -146,7 +146,7 @@ public abstract class PropertyBuilder, T> { * @param Type of values the property handles * * @author Clément Fournier - * @since 6.7.0 + * @since 6.10.0 */ // Note: we may keep some specialized property builders around to allow for some sugar, // e.g. specifying the default value of a regex property as a string, or like the collection one, @@ -247,7 +247,7 @@ public abstract class PropertyBuilder, T> { * @param Collection type for the property being built * * @author Clément Fournier - * @since 6.7.0 + * @since 6.10.0 */ public static final class GenericCollectionPropertyBuilder> extends PropertyBuilder, C> { private final ValueParser parser; diff --git a/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyDescriptor.java b/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyDescriptor.java index 8c3dde160a..9cc323678c 100644 --- a/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyDescriptor.java +++ b/pmd-core/src/main/java/net/sourceforge/pmd/properties/PropertyDescriptor.java @@ -16,7 +16,8 @@ import net.sourceforge.pmd.annotation.InternalApi; * any associated GUIs. While concrete descriptor instances are static and immutable they provide validation, * serialization, and default values for any specific datatypes. * - *

Upcoming API changes to the properties framework: see https://github.com/pmd/pmd/issues/1415

+ *

Upcoming API changes to the properties framework

+ * see pmd/pmd#1432 * * @param type of the property's value. This is a list type for multi-valued properties. *