Skip to content

Commit

Permalink
remove trivial code, remove MANIFEST from repos
Browse files Browse the repository at this point in the history
  • Loading branch information
shelling committed Aug 23, 2009
1 parent dc8d90f commit b49f9ad
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
9 changes: 0 additions & 9 deletions MANIFEST

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -17,5 +17,5 @@ WriteMakefile(
'XML::Simple' => 0,
},
AUTHOR => 'shelling <shelling@cpan.org>',
clean => { FILES => "Posterous-* MANIFEST.bak" },
clean => { FILES => "Posterous-* MANIFEST.bak MANIFEST" },
);
2 changes: 0 additions & 2 deletions lib/Posterous.pm
Expand Up @@ -49,7 +49,6 @@ sub account_info : Public {
$account_info;
} else {
my $request = HTTP::Request->new( GET => $AUTH_PATH )->basic_auth($self->auth_key);
# $request->header( Authorization => "Basic ". $self->auth_key );
my $content = $UA->request($request)->content;
$account_info = XMLin($content);
}
Expand All @@ -58,7 +57,6 @@ sub account_info : Public {
sub read_posts : Public {
my ($self, %options) = @_;
my $request = HTTP::Request->new( GET => $READPOST_PATH . "?" . options2query(%options) )->basic_auth($self->auth_key);
# $request->header( Authorization => "Basic ". $self->auth_key );
my $content = $UA->request($request)->content;
XMLin($content);
}
Expand Down

0 comments on commit b49f9ad

Please sign in to comment.