summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Edwards <robin.ge@gmail.com>2013-03-01 10:23:04 +0000
committerRobin Edwards <robin.ge@gmail.com>2013-03-01 10:23:04 +0000
commit0072a21fff71351cc3e5ee4eadf84c3f39258749 (patch)
treefdb783c9f4d815e843dc838d3249be4eab0ccb2c
parentTidy up (diff)
downloadnet-riak-0072a21fff71351cc3e5ee4eadf84c3f39258749.tar.gz
Remove deprecations
Diffstat (limited to '')
-rw-r--r--lib/Net/Riak/Object.pm11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/Net/Riak/Object.pm b/lib/Net/Riak/Object.pm
index 79d7ce3..8dc92fd 100644
--- a/lib/Net/Riak/Object.pm
+++ b/lib/Net/Riak/Object.pm
@@ -34,7 +34,6 @@ has links => (
lazy => 1,
default => sub { [] },
handles => {
- count_links => 'elements',
append_link => 'push',
has_links => 'count',
all_links => 'elements',
@@ -59,10 +58,6 @@ has siblings => (
clearer => '_clear_siblings',
);
-after count_links => sub {
- warn "DEPRECATED: count_links method will be removed in the 0.17 release, please use has_links.";
-};
-
sub store {
my ($self, $w, $dw) = @_;
@@ -109,12 +104,6 @@ sub remove_index {
}
}
-sub status {
- my ($self) = @_;
- warn "DEPRECATED: status method will be removed in the 0.17 release, please use ->client->status.";
- $self->client->status;
-}
-
sub load {
my $self = shift;