You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2020/03/14 19:45:20 UTC

[sling-site] branch master updated: style

This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 7ebb3ee  style
7ebb3ee is described below

commit 7ebb3ee89ef4d8af489c4d7e6afb4de7b8593e1d
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sat Mar 14 20:44:17 2020 +0100

    style
---
 src/main/jbake/content/documentation/development/testing-paxexam.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/jbake/content/documentation/development/testing-paxexam.md b/src/main/jbake/content/documentation/development/testing-paxexam.md
index 9765e41..e59ae43 100644
--- a/src/main/jbake/content/documentation/development/testing-paxexam.md
+++ b/src/main/jbake/content/documentation/development/testing-paxexam.md
@@ -310,12 +310,12 @@ The `SimpleIT` below from [Scripting FreeMarker](https://github.com/apache/sling
     
         @Configuration
         public Option[] configuration() {
-            return new Option[]{
+            return options(
                 baseConfiguration(),
                 factoryConfiguration("org.apache.sling.resource.presence.internal.ResourcePresenter")
                     .put("path", "/apps/freemarker/page/simple/html.ftl")
                     .asOption(),
-            };
+            );
         }
     
         @Before