Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
und3f committed Mar 26, 2012
1 parent f28796f commit a5d4329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Twiggy/Server/TLS.pm
Expand Up @@ -17,10 +17,10 @@ sub new {
my $self = $class->SUPER::new(@_);

Carp::croak('missed required option "tls_key"')
unless exists $self->{tls_key};
unless $self->{tls_key};

Carp::croak('missed required option "tls_cert"')
unless exists $self->{tls_cert};
unless $self->{tls_cert};

my %tls = (
SSL_server => 1,
Expand Down

0 comments on commit a5d4329

Please sign in to comment.