From 5d316fd33ff19c483b2d67fa5e0b2bd393b0a4be Mon Sep 17 00:00:00 2001 From: Maxim Breitman <89523915+breitwan@users.noreply.github.com> Date: Thu, 8 Aug 2024 02:48:18 +0300 Subject: [PATCH] chore: license in LambdaUtils.java --- .../elytrium/limboapi/utils/LambdaUtil.java | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/plugin/src/main/java/net/elytrium/limboapi/utils/LambdaUtil.java b/plugin/src/main/java/net/elytrium/limboapi/utils/LambdaUtil.java index 1cc1f2a2..366ee443 100644 --- a/plugin/src/main/java/net/elytrium/limboapi/utils/LambdaUtil.java +++ b/plugin/src/main/java/net/elytrium/limboapi/utils/LambdaUtil.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2021 - 2024 Elytrium + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package net.elytrium.limboapi.utils; import java.lang.invoke.LambdaMetafactory; @@ -38,4 +55,4 @@ public static BiConsumer setterOf(Field f) throws Throwable { type ).getTarget().invokeExact(handle); } -} \ No newline at end of file +}