Ok, so, the interface just changed, and the docs are complete crap now, but the imple...
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Engine / Trait / DisableCycleDetection.pm
CommitLineData
a473d69d 1package MooseX::Storage::Engine::Trait::DisableCycleDetection;
2use Moose::Role;
3
3513de05 4around 'check_for_cycle_in_collapse' => sub {
5 my ($orig, $self, $attr, $value) = @_;
6 # See NOTE in MX::Storage::Engine
7 return $value;
8};
9
a473d69d 101;
11