projects
/
working
/
SIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32f2c2e
)
Not an Exporter and not implemented
author
Joe Atzberger
<atz@esilibrary.com>
Tue, 1 Jun 2010 17:50:35 +0000
(17:50 +0000)
committer
Thomas Berezansky
<tsbere@mvlc.org>
Tue, 1 Jun 2010 17:50:35 +0000
(17:50 +0000)
ILS/Transaction/FeePayment.pm
patch
|
blob
|
history
diff --git
a/ILS/Transaction/FeePayment.pm
b/ILS/Transaction/FeePayment.pm
index
1081d86
..
6930f66
100644
(file)
--- a/
ILS/Transaction/FeePayment.pm
+++ b/
ILS/Transaction/FeePayment.pm
@@
-19,13
+19,16
@@
package ILS::Transaction::FeePaid;
-use Exporter;
use warnings;
use strict;
use ILS;
use ILS::Transaction;
+use base qw/ILS::Transaction/;
-our @ISA = qw(Exporter ILS::Transaction);
+sub new {
+ warn "Not implemented";
+ return;
+}
1;