This is an automated email from the ASF dual-hosted git repository.
cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-api.git
The following commit(s) were added to refs/heads/master by this push:
new 437263c chore: apply Maia updates (pom.xml and
src/main/java/org/apache/sling/api/servlets/HtmlResponse.java)
437263c is described below
commit 437263c6f459eb9e79566f039e85050377c5aa46
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Mon Mar 30 14:38:33 2026 +0200
chore: apply Maia updates (pom.xml and
src/main/java/org/apache/sling/api/servlets/HtmlResponse.java)
---
pom.xml | 2 +-
src/main/java/org/apache/sling/api/servlets/HtmlResponse.java | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index 3cab571..ea0df7b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.sling</groupId>
<artifactId>sling-bundle-parent</artifactId>
- <version>62</version>
+ <version>66</version>
<relativePath />
</parent>
diff --git a/src/main/java/org/apache/sling/api/servlets/HtmlResponse.java
b/src/main/java/org/apache/sling/api/servlets/HtmlResponse.java
index bf3240b..367c253 100644
--- a/src/main/java/org/apache/sling/api/servlets/HtmlResponse.java
+++ b/src/main/java/org/apache/sling/api/servlets/HtmlResponse.java
@@ -493,7 +493,7 @@ public class HtmlResponse {
while ((read = in.read()) >= 0) {
char c = (char) read;
switch (state) {
- // initial
+ // initial
case 0:
if (c == '$') {
state = 1;
@@ -501,7 +501,7 @@ public class HtmlResponse {
out.write(c);
}
break;
- // $ read
+ // $ read
case 1:
if (c == '{') {
state = 2;
@@ -511,7 +511,7 @@ public class HtmlResponse {
out.write(c);
}
break;
- // { read
+ // { read
case 2:
if (c == '}') {
state = 0;