diff options
-rw-r--r-- | lib/App/ArchLinux/PackagerTools/CPAN.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/App/ArchLinux/PackagerTools/CPAN.pm b/lib/App/ArchLinux/PackagerTools/CPAN.pm index b992a8f..4efc4df 100644 --- a/lib/App/ArchLinux/PackagerTools/CPAN.pm +++ b/lib/App/ArchLinux/PackagerTools/CPAN.pm @@ -64,7 +64,6 @@ Return 1 if a newer version of the distribution is available, 0 otherwise. method is_newer_version_available($dist_name, $version) { my $dist = $self->get_dist($dist_name); - # TODO compare versions rather than not-equal check my $dist_version = version->parse($dist->{version}); if ($dist_version > version->parse($version)) { return 1; |