diff options
| author | Paul Buetow <paul@buetow.org> | 2022-04-21 23:45:23 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2022-04-21 22:59:05 +0100 |
| commit | ce255ff5a1257db57424603caac2b4bfca3c7694 (patch) | |
| tree | 9f5c3a9222555270ae7d3ebccd2d4da27e3f1e87 /lib/PerlDaemonModules/ExampleModule.pm | |
| parent | db2bf4b9dbe3388e074a1144ac3f0e9b04d43b96 (diff) | |
release v1.3develop
Diffstat (limited to 'lib/PerlDaemonModules/ExampleModule.pm')
| -rw-r--r-- | lib/PerlDaemonModules/ExampleModule.pm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/PerlDaemonModules/ExampleModule.pm b/lib/PerlDaemonModules/ExampleModule.pm index 8e61f12..1c0e671 100644 --- a/lib/PerlDaemonModules/ExampleModule.pm +++ b/lib/PerlDaemonModules/ExampleModule.pm @@ -1,5 +1,3 @@ -# PerlDaemon (c) 2010, 2011, 2015, Dipl.-Inform. (FH) Paul Buetow (http://perldaemon.buetow.org) - package PerlDaemonModules::ExampleModule; use strict; @@ -9,9 +7,8 @@ sub new ($$$) { my ($class, $conf) = @_; my $self = bless { conf => $conf }, $class; - - # Store some private persistent module stuff - $self->{counter} = 0; + # Store some private persistent module stuff + $self->{counter} = 0; return $self; } |
