I have the following code which needs to be corrected, as defined(@array) is deprecated in the latest Perl.
defined(@array)
my @inputs = ( ( defined @{$padSrc-
That's much more concisely written this way
my @inputs = ( @{ $padSrc->{inouts} }, @{ $padSrc->{inputs} } );