summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-03-27 11:44:56 -0400
committerChristopher Burger <burgerc@freeside.biz>2018-04-02 09:27:11 -0400
commit5ec5514cc0b77a4ba930223bccca71f3877ce6d7 (patch)
treebbafab4e588860c460b392013f66c58b896101d0
parent5ffcb1400018f9d7b35b05f6cd9d2878a690a390 (diff)
RT# 79239 - cleaned up code
-rw-r--r--FS/FS/part_pkg/sql_external.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/FS/FS/part_pkg/sql_external.pm b/FS/FS/part_pkg/sql_external.pm
index 75c7e13..a3866f3 100644
--- a/FS/FS/part_pkg/sql_external.pm
+++ b/FS/FS/part_pkg/sql_external.pm
@@ -146,8 +146,7 @@ sub calc_recur {
sub cutoff_day {
my( $self, $cust_pkg ) = @_;
- my $error = SUPER->cutoff_day($cust_pkg);
- #my $error = FS::part_pkg::flat::cutoff_day( $self, $cust_pkg ));
+ my $error = FS::part_pkg::flat::cutoff_day( $self, $cust_pkg );
return $error;
}