Skip to content

Commit

Permalink
fix invalid code corrupted by runaway regex
Browse files Browse the repository at this point in the history
  • Loading branch information
avar committed Feb 1, 2010
1 parent 87717be commit f978612
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions lib/Hailo/Storage/Perl.pm
Expand Up @@ -106,12 +106,10 @@ sub save {
return;
}

sub start_training {
my ($self) = @_; return }
method stop_training { return }
sub start_learning {
my ($self) = @_; return }
method stop_learning { return }
sub start_training { return }
sub stop_training { return }
sub start_learning { return }
sub stop_learning { return }

with qw(Hailo::Role::Generic
Hailo::Role::Storage);
Expand Down

0 comments on commit f978612

Please sign in to comment.