RT 4.2.11, ticket#13852
[freeside.git] / rt / lib / RT / Action.pm
index 853949d..1740b1d 100755 (executable)
@@ -172,13 +172,6 @@ sub Prepare  {
 }
 
 
-#If this rule applies to this transaction, return true.
-
-sub IsApplicable  {
-  my $self = shift;
-  return(undef);
-}
-
 sub Options {
   my $self = shift;
   return();
@@ -190,19 +183,6 @@ sub Rules {
   return(split "\n", $self->ScripObj->ActionRules);
 }
 
-sub DESTROY {
-    my $self = shift;
-
-    # We need to clean up all the references that might maybe get
-    # oddly circular
-    $self->{'ScripActionObj'} = undef;
-    $self->{'ScripObj'} = undef;
-    $self->{'TemplateObj'} =undef
-    $self->{'TicketObj'} = undef;
-    $self->{'TransactionObj'} = undef;
-}
-
-
 RT::Base->_ImportOverlays();
 
 1;