aboutsummaryrefslogtreecommitdiff
path: root/lib/WebCoso
diff options
context:
space:
mode:
authordakkar <dakkar@luxion>2006-01-28 11:21:58 +0000
committerdakkar <dakkar@luxion>2006-01-28 11:21:58 +0000
commit8b30558e59d43c78394c3c3204d30752ffb1d26c (patch)
tree61d4e346fc2ad996514dd0c8c0e16f392c341a54 /lib/WebCoso
parentpipeline fatte e testate, forse fix #2 (diff)
downloadWebCoso-8b30558e59d43c78394c3c3204d30752ffb1d26c.tar.gz
WebCoso-8b30558e59d43c78394c3c3204d30752ffb1d26c.tar.bz2
WebCoso-8b30558e59d43c78394c3c3204d30752ffb1d26c.zip
usato Class::Std anche negli step
git-svn-id: svn://luxion/repos/WebCoso/trunk@143 fcb26f47-9200-0410-b104-b98ab5b095f3
Diffstat (limited to 'lib/WebCoso')
-rw-r--r--lib/WebCoso/Step/Base.pm8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/WebCoso/Step/Base.pm b/lib/WebCoso/Step/Base.pm
index f15370c..6a21932 100644
--- a/lib/WebCoso/Step/Base.pm
+++ b/lib/WebCoso/Step/Base.pm
@@ -1,14 +1,8 @@
package WebCoso::Step::Base;
use strict;
use warnings;
+use Class::Std;
use WebCoso::X;
use WebCoso::Step;
-sub new {
- my ($class,$arg_ref)=@_;
-
- my $self={%$arg_ref};
- return bless $self,$class;
-}
-
1;