This is an automated email from the ASF dual-hosted git repository. theigl pushed a commit to branch wicket-9.x in repository https://gitbox.apache.org/repos/asf/wicket.git
commit dc8f083060aa4fd06777aaed44d356d28e6e571b Author: Thomas Heigl <[email protected]> AuthorDate: Tue Apr 11 17:17:13 2023 +0200 WICKET-7041 Deprecate `LazyStringResponse` for removal in Wicket 10 --- .../src/main/java/org/apache/wicket/response/LazyStringResponse.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wicket-core/src/main/java/org/apache/wicket/response/LazyStringResponse.java b/wicket-core/src/main/java/org/apache/wicket/response/LazyStringResponse.java index 322e428383..d455262a9d 100644 --- a/wicket-core/src/main/java/org/apache/wicket/response/LazyStringResponse.java +++ b/wicket-core/src/main/java/org/apache/wicket/response/LazyStringResponse.java @@ -25,7 +25,9 @@ import org.apache.wicket.util.string.AppendingStringBuffer; * {@link StringResponse}, but defers creating the buffer until it is needed. * * @author Thomas Heigl + * @deprecated In Wicket 10 {@link StringResponse} will be made lazy and this class will be removed */ +@Deprecated(since = "9.13.0", forRemoval = true) public class LazyStringResponse extends Response {
