This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch pre-merge in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 1cb305e206f21c25c528790fa1142aaac1e7eafe Author: Dan Haywood <[email protected]> AuthorDate: Tue Jun 25 15:04:44 2024 +0200 fixes merge, adds missing license header --- .../publishing/log/PageRenderCollectionLogger.java | 1 + .../applib/services/publishing/log/Timing.java | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/PageRenderCollectionLogger.java b/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/PageRenderCollectionLogger.java index 71f2ed3785..24b2e497de 100644 --- a/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/PageRenderCollectionLogger.java +++ b/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/PageRenderCollectionLogger.java @@ -41,6 +41,7 @@ import org.apache.causeway.commons.internal.base._NullSafe; import lombok.RequiredArgsConstructor; import lombok.extern.log4j.Log4j2; +import lombok.val; /** * Simple implementation of {@link PageRenderSubscriber} that just diff --git a/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/Timing.java b/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/Timing.java index 38594a047a..a2dc2b640c 100644 --- a/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/Timing.java +++ b/api/applib/src/main/java/org/apache/causeway/applib/services/publishing/log/Timing.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ package org.apache.causeway.applib.services.publishing.log; class Timing {
