From 76e57ea2c7b8ec55b45dfceba93f9ba2ca97bb84 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Fri, 23 Nov 2018 20:25:04 +0100 Subject: [PATCH 1/2] Fix wrong issue link Co-Authored-By: oowekyala --- .../net/sourceforge/pmd/properties/PropertyDescriptor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. * From ce83a875499e7510db080f4ae882e3b2e82d8222 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Fri, 23 Nov 2018 20:46:41 +0100 Subject: [PATCH 2/2] Fix outdated versions Co-Authored-By: oowekyala --- .../java/net/sourceforge/pmd/properties/PropertyBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 6cddaa50bd..3e60534f2b 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 @@ -153,7 +153,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, @@ -254,7 +254,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;