Skip to content

Commit

Permalink
These attr don't need to be lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpalmer committed Mar 26, 2011
1 parent 9d8e2dd commit 09b2e57
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions week4/lib/Games/ElectricLines.pm
Expand Up @@ -10,14 +10,12 @@ use SDLx::Sprite::Animated;
has _share_dir => ( has _share_dir => (
is => 'ro', is => 'ro',
isa => 'Str', isa => 'Str',
lazy => 1,
default => sub { File::Spec->catdir( $Bin, 'share' ) }, default => sub { File::Spec->catdir( $Bin, 'share' ) },
); );


has app => ( has app => (
is => 'ro', is => 'ro',
isa => 'SDLx::App', isa => 'SDLx::App',
lazy => 1,
builder => '_build_app', builder => '_build_app',
handles => [qw( run )], handles => [qw( run )],
); );
Expand Down

0 comments on commit 09b2e57

Please sign in to comment.