Bug 34838: Tidy

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Pedro Amorim 2023-09-26 09:42:27 +00:00 committed by Martin Renvoize
parent 3caabe886e
commit fff166679b
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -2073,21 +2073,25 @@ sub strings_map {
}
my $status_string =
( $self->status && exists $status_graph_union->{ $self->status } && defined $status_graph_union->{ $self->status }->{name} )
? $status_graph_union->{ $self->status }->{name}
: $self->status;
( $self->status
&& exists $status_graph_union->{ $self->status }
&& defined $status_graph_union->{ $self->status }->{name} )
? $status_graph_union->{ $self->status }->{name}
: $self->status;
my $status_code =
( $self->status && exists $status_graph_union->{ $self->status } && defined $status_graph_union->{ $self->status }->{id} )
? $status_graph_union->{ $self->status }->{id}
: $self->status;
( $self->status
&& exists $status_graph_union->{ $self->status }
&& defined $status_graph_union->{ $self->status }->{id} )
? $status_graph_union->{ $self->status }->{id}
: $self->status;
my $strings = {
status => {
backend => $self->backend, # the backend identifier
str => $status_string, # the status description, taken from the status graph
code => $status_code, # the status id, taken from the status graph
type => 'ill_status', # fixed type
backend => $self->backend, # the backend identifier
str => $status_string, # the status description, taken from the status graph
code => $status_code, # the status id, taken from the status graph
type => 'ill_status', # fixed type
}
};