blob: f2fd69a6826e144ea114cfb8aa32327325836b66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package Bugzilla::PatchReader::Base;
use strict;
sub new {
my $class = shift;
$class = ref($class) || $class;
my $this = {};
bless $this, $class;
return $this;
}
sub sends_data_to {
my $this = shift;
if (defined($_[0])) {
$this->{TARGET} = $_[0];
} else {
return $this->{TARGET};
}
}
1
|