diff options
| author | Paul Buetow (centauri) <puppet@mx.buetow.org> | 2015-05-23 21:55:44 +0100 |
|---|---|---|
| committer | Paul Buetow (centauri) <puppet@mx.buetow.org> | 2015-05-23 21:55:44 +0100 |
| commit | cff6a46aadd6cc2915ded46fa8aa05c9caef9421 (patch) | |
| tree | 79f5769fac03c0997f60cd55d9b8657a3d29935b /lib | |
| parent | f01a1b81735086acb446d5c4b67fbdb406e6e6f2 (diff) | |
| parent | 9c79b8da43e327cb954b39249efde5c9f1ef87c0 (diff) | |
Merge remote-tracking branch 'remotes/github/devel' into devel
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/PerlDaemonModules/ExampleModule.pm | 4 | ||||
| -rw-r--r-- | lib/PerlDaemonModules/ExampleModule2.pm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/PerlDaemonModules/ExampleModule.pm b/lib/PerlDaemonModules/ExampleModule.pm index 4e7d1c4..8e61f12 100644 --- a/lib/PerlDaemonModules/ExampleModule.pm +++ b/lib/PerlDaemonModules/ExampleModule.pm @@ -10,8 +10,8 @@ sub new ($$$) { my $self = bless { conf => $conf }, $class; - # Store some private module stuff - $self->{counter} = 0; + # Store some private persistent module stuff + $self->{counter} = 0; return $self; } diff --git a/lib/PerlDaemonModules/ExampleModule2.pm b/lib/PerlDaemonModules/ExampleModule2.pm index 2acf221..eaa5702 100644 --- a/lib/PerlDaemonModules/ExampleModule2.pm +++ b/lib/PerlDaemonModules/ExampleModule2.pm @@ -10,8 +10,8 @@ sub new ($$$) { my $self = bless { conf => $conf }, $class; - # Store some private module stuff - $self->{counter} = 0; + # Store some private persistent module stuff + $self->{counter} = 0; return $self; } |
