Skip to content

Commit

Permalink
LinkNameConstants: Mark properties PN_LINK_WINDOW_WIDTH, PN_LINK_WIND…
Browse files Browse the repository at this point in the history
…OW_HEIGHT, PN_LINK_WINDOW_FEATURES as deprecated - they are not used.
  • Loading branch information
stefanseifert committed Dec 15, 2023
1 parent 3e0af9d commit 3bb9597
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
<body>

<release version="1.10.4" date="not released">
<action type="update" dev="sseifert">
LinkNameConstants: Mark properties PN_LINK_WINDOW_WIDTH, PN_LINK_WINDOW_HEIGHT, PN_LINK_WINDOW_FEATURES as deprecated - they are not used.
</action>
</release>

<release version="1.10.2" date="2023-02-24">
<action type="update" dev="sseifert">
Switch to Java 11 as minimum version.
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/io/wcm/handler/link/LinkNameConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,23 @@ private LinkNameConstants() {

/**
* Window width (px)
* @deprecated This property is no longer supported.
*/
@Deprecated(forRemoval = true)
public static final @NotNull String PN_LINK_WINDOW_WIDTH = "linkWindowWidth";

/**
* Window height (px)
* @deprecated This property is no longer supported.
*/
@Deprecated(forRemoval = true)
public static final @NotNull String PN_LINK_WINDOW_HEIGHT = "linkWindowHeight";

/**
* Window features
* @deprecated This property is no longer supported.
*/
@Deprecated(forRemoval = true)
public static final @NotNull String PN_LINK_WINDOW_FEATURES = "linkWindowFeatures";

/**
Expand Down

0 comments on commit 3bb9597

Please sign in to comment.