[Bps-public-commit] r12470 - in Prophet/branches/moose: .
sartak at bestpractical.com
sartak at bestpractical.com
Sat May 17 07:16:16 EDT 2008
Author: sartak
Date: Sat May 17 07:16:15 2008
New Revision: 12470
Modified:
Prophet/branches/moose/ (props changed)
Prophet/branches/moose/lib/Prophet/ConflictingPropChange.pm
Log:
r56208 at onn: sartak | 2008-05-17 07:11:43 -0400
Type constraints for the values on ConflictingPropChange (to match PropChange's)
Modified: Prophet/branches/moose/lib/Prophet/ConflictingPropChange.pm
==============================================================================
--- Prophet/branches/moose/lib/Prophet/ConflictingPropChange.pm (original)
+++ Prophet/branches/moose/lib/Prophet/ConflictingPropChange.pm Sat May 17 07:16:15 2008
@@ -7,15 +7,18 @@
);
has source_old_value => (
- is => 'rw',
+ is => 'rw',
+ isa => 'Maybe[Str]',
);
has target_value => (
- is => 'rw',
+ is => 'rw',
+ isa => 'Maybe[Str]',
);
has source_new_value => (
- is => 'rw',
+ is => 'rw',
+ isa => 'Maybe[Str]',
);
=head1 NAME
More information about the Bps-public-commit
mailing list