Fix lombok toString to call super where needed (#1634)

Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-02-09 13:00:12 +02:00
committed by GitHub
parent 669f50a4f7
commit ab10b67d4e
37 changed files with 62 additions and 12 deletions

View File

@@ -25,7 +25,7 @@ import java.util.Arrays;
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Getter
@EqualsAndHashCode(callSuper = true)
@ToString
@ToString(callSuper = true)
public class RemoteIdEvent extends RemoteTenantAwareEvent {
@Serial

View File

@@ -26,7 +26,7 @@ import java.io.Serial;
*/
@Getter
@EqualsAndHashCode(callSuper = true)
@ToString
@ToString(callSuper = true)
public class RemoteTenantAwareEvent extends RemoteApplicationEvent implements TenantAwareEvent {
@Serial

View File

@@ -26,7 +26,7 @@ import org.eclipse.hawkbit.repository.model.Action;
@NoArgsConstructor // for serialization libs like jackson
@Getter
@EqualsAndHashCode(callSuper = true)
@ToString
@ToString(callSuper = true)
public class TargetAssignDistributionSetEvent extends AbstractAssignmentEvent {
@Serial

View File

@@ -22,7 +22,7 @@ import java.io.Serial;
*/
@Getter
@EqualsAndHashCode(callSuper = true)
@ToString
@ToString(callSuper = true)
public class TargetAttributesRequestedEvent extends RemoteIdEvent {
@Serial

View File

@@ -23,7 +23,7 @@ import java.io.Serial;
*/
@Getter
@EqualsAndHashCode(callSuper = true)
@ToString
@ToString(callSuper = true)
public class TargetDeletedEvent extends RemoteIdEvent implements EntityDeletedEvent {
@Serial

View File

@@ -21,7 +21,7 @@ import java.io.Serial;
*/
@Getter
@EqualsAndHashCode(callSuper = true)
@ToString
@ToString(callSuper = true)
public class TargetPollEvent extends RemoteTenantAwareEvent {
@Serial

View File

@@ -24,7 +24,7 @@ import java.io.Serial;
@NoArgsConstructor // for serialization libs like jackson
@Getter
@EqualsAndHashCode(callSuper = true)
@ToString
@ToString(callSuper = true)
public class TenantConfigurationDeletedEvent extends RemoteIdEvent implements EntityDeletedEvent {
@Serial