Improve Security Core with lombok 4 (#1595)

Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-02-03 05:00:49 +02:00
committed by GitHub
parent f69d386613
commit 6d43327e38

View File

@@ -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 * This program and the accompanying materials are made
* are made available under the terms of the Eclipse Public License v1.0 * available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at * which is available at https://www.eclipse.org/legal/epl-2.0/
* http://www.eclipse.org/legal/epl-v10.html *
* SPDX-License-Identifier: EPL-2.0
*/ */
package org.eclipse.hawkbit.repository.event.remote; package org.eclipse.hawkbit.repository.event.remote;
@@ -49,7 +50,8 @@ public abstract class MultiActionEvent extends RemoteTenantAwareEvent implements
* @param actions * @param actions
* the actions involved * the actions involved
*/ */
protected MultiActionEvent(String tenant, String applicationId, List<Action> actions) {super(applicationId, tenant, applicationId); protected MultiActionEvent(String tenant, String applicationId, List<Action> actions) {
super(applicationId, tenant, applicationId);
this.controllerIds.addAll(getControllerIdsFromActions(actions)); this.controllerIds.addAll(getControllerIdsFromActions(actions));
this.actionIds.addAll(getIdsFromActions(actions)); this.actionIds.addAll(getIdsFromActions(actions));
} }