From 6d43327e38995d5ff49153f162b2080d59d09c80 Mon Sep 17 00:00:00 2001 From: Avgustin Marinov Date: Sat, 3 Feb 2024 05:00:49 +0200 Subject: [PATCH] Improve Security Core with lombok 4 (#1595) Signed-off-by: Marinov Avgustin --- .../repository/event/remote/MultiActionEvent.java | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/event/remote/MultiActionEvent.java b/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/event/remote/MultiActionEvent.java index e5b98a696..5f45e969a 100644 --- a/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/event/remote/MultiActionEvent.java +++ b/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/event/remote/MultiActionEvent.java @@ -1,10 +1,11 @@ /** - * Copyright (c) 2019 Bosch Software Innovations GmbH and others. + * Copyright (c) 2019 Bosch Software Innovations GmbH and others * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * This program and the accompanying materials are made + * available under the terms of the Eclipse Public License 2.0 + * which is available at https://www.eclipse.org/legal/epl-2.0/ + * + * SPDX-License-Identifier: EPL-2.0 */ package org.eclipse.hawkbit.repository.event.remote; @@ -49,7 +50,8 @@ public abstract class MultiActionEvent extends RemoteTenantAwareEvent implements * @param actions * the actions involved */ - protected MultiActionEvent(String tenant, String applicationId, List actions) {super(applicationId, tenant, applicationId); + protected MultiActionEvent(String tenant, String applicationId, List actions) { + super(applicationId, tenant, applicationId); this.controllerIds.addAll(getControllerIdsFromActions(actions)); this.actionIds.addAll(getIdsFromActions(actions)); }