Prepare for git repository
[spider.git] / perl / Thingy.pm
index 2483d2732705a8f566ae359ca86fd8a194d98167..f10467986dcb0d4215f591bfa4b881b61ef3567b 100644 (file)
@@ -12,12 +12,6 @@ use strict;
 
 package Thingy;
 
-use vars qw($VERSION $BRANCH);
-$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
-$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/  || (0,0));
-$main::build += $VERSION;
-$main::branch += $BRANCH;
-
 use DXChannel;
 use DXDebug;
 
@@ -50,7 +44,7 @@ sub send
        } else {
                no strict 'refs';
                my $sub = "gen_$class";
-               push @out, $thing->$sub if $thing->can($sub);
+               push @out, $thing->$sub() if $thing->can($sub);
        }
        $chan->send(@out) if @out;
 }