From 6ce94f434ece515035358cd18b5f6b22dad806fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonard=20Br=C3=BCnings?= Date: Wed, 24 Jan 2024 15:23:19 +0100 Subject: [PATCH] Implement Review Comments --- .../util/IThrowableBiConsumer.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/spock-core/src/main/java/org/spockframework/util/IThrowableBiConsumer.java b/spock-core/src/main/java/org/spockframework/util/IThrowableBiConsumer.java index 071f2a4ed7..bccf9d4235 100644 --- a/spock-core/src/main/java/org/spockframework/util/IThrowableBiConsumer.java +++ b/spock-core/src/main/java/org/spockframework/util/IThrowableBiConsumer.java @@ -1,17 +1,16 @@ /* - * Copyright 2009 the original author or authors. + * Copyright 2024 the original author or authors. * - * Licensed 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 + * Licensed 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 + * https://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. * - * https://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.spockframework.util; @@ -19,7 +18,8 @@ /** * A BiConsumer that may throw a checked exception. * - * @author Peter Niederwieser + * @author Leonard Brünings + * @since 2.4 */ @FunctionalInterface public interface IThrowableBiConsumer {