summaryrefslogtreecommitdiffstats
path: root/lib/Locale/POFileManager.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Locale/POFileManager.pm')
-rw-r--r--lib/Locale/POFileManager.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Locale/POFileManager.pm b/lib/Locale/POFileManager.pm
index 573cf1c..811105f 100644
--- a/lib/Locale/POFileManager.pm
+++ b/lib/Locale/POFileManager.pm
@@ -29,9 +29,9 @@ has files => (
builder => '_build_files',
init_arg => undef,
handles => {
- files => 'elements',
- first_file => 'first',
- _add_file => 'push',
+ files => 'elements',
+ _first_file => 'first',
+ _add_file => 'push',
},
);
@@ -131,7 +131,7 @@ sub language_file {
my $self = shift;
my ($lang) = @_;
- return $self->first_file(sub {
+ return $self->_first_file(sub {
$_->language eq $lang;
});
}