r28070 - /trunk/dh-make-perl/lib/Debian/Dependencies.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Dec 11 14:27:19 UTC 2008


Author: dmn
Date: Thu Dec 11 14:27:17 2008
New Revision: 28070

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=28070
Log:
move private method _stringify right after the constructor

Modified:
    trunk/dh-make-perl/lib/Debian/Dependencies.pm

Modified: trunk/dh-make-perl/lib/Debian/Dependencies.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Dependencies.pm?rev=28070&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Dependencies.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Dependencies.pm Thu Dec 11 14:27:17 2008
@@ -57,6 +57,12 @@
     return $self;
 }
 
+sub _stringify {
+    my $self = shift;
+
+    return join( ', ', @$self );
+}
+
 =back
 
 =head2 OBJECT METHODS
@@ -74,11 +80,7 @@
 
 =cut
 
-sub _stringify {
-    my $self = shift;
 
-    return join( ', ', @$self );
-}
 
 sub prune(@) {
     my $self = shift;




More information about the Pkg-perl-cvs-commits mailing list