diff options
author | Guillem Jover <guillem@debian.org> | 2008-12-07 00:18:21 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2008-12-09 05:46:33 +0200 |
commit | a65b2bfb1efba657f99771019601ddaf609c2bf8 (patch) | |
tree | 55597963444e0812576ec095eaafe38542557359 /scripts/Dpkg/Source/Package/V3/git.pm | |
parent | 07efbb0889fcc6fab678ee727fc7c4013b163b53 (diff) | |
download | dpkg-a65b2bfb1efba657f99771019601ddaf609c2bf8.tar.gz |
Dpkg::ErrorHandling: Export public functions by default
The remaining non exported functions and variables need to, either
disappear, move to some better place, be renamed, or for variables
to get hidden through a getter/setter.
Diffstat (limited to 'scripts/Dpkg/Source/Package/V3/git.pm')
-rw-r--r-- | scripts/Dpkg/Source/Package/V3/git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/Source/Package/V3/git.pm b/scripts/Dpkg/Source/Package/V3/git.pm index a487281e6..440134594 100644 --- a/scripts/Dpkg/Source/Package/V3/git.pm +++ b/scripts/Dpkg/Source/Package/V3/git.pm @@ -33,7 +33,7 @@ use File::Temp qw(tempdir); use Dpkg; use Dpkg::Gettext; use Dpkg::Compression; -use Dpkg::ErrorHandling qw(error warning subprocerr syserr info); +use Dpkg::ErrorHandling; use Dpkg::Version qw(check_version); use Dpkg::Source::Archive; use Dpkg::Exit; |