Hi, this line of code is producing a "Useless use of numeric eq" warning:
- $result->{is_valid} == $result->{is_valid};
- return $result->{is_valid};
The following change fixes the warning:
+ return $result->{is_valid} == $result->{is_valid};
Above patch is for 0.5.
- R.