Skip to content

Commit

Permalink
Make firmwareStatus field not final in DTO object (#3687)
Browse files Browse the repository at this point in the history
Fix #3679

If not, calls of method limitToFields by PR #3335 fails when the list of
fields does not contain firmwareStatus.

Signed-off-by: Laurent Garnier <[email protected]>
  • Loading branch information
lolodomo authored Jul 5, 2023
1 parent b2934ad commit e9719eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class EnrichedThingDTO extends AbstractThingDTO {

public List<EnrichedChannelDTO> channels;
public ThingStatusInfo statusInfo;
public final FirmwareStatusDTO firmwareStatus;
public FirmwareStatusDTO firmwareStatus;
public boolean editable;

/**
Expand Down

0 comments on commit e9719eb

Please sign in to comment.