Subject: | use UNIVERSAL qw(can); Deprecated |
Hi,
UNIVERSAL's import has apparently been deprecated, and if you enable warnings you get a complaint telling you such. The only usage you have of can() in your code it is called as a method and thus doesn't need to be imported (the import is as far as I can tell meaningless and un-used). Simply eliminating line 3 should fix the issue.
Thanks!
-Chris