1
0
mirror of https://github.com/openbsd/src.git synced 2026-05-01 01:27:08 +00:00

banish implicit return

This commit is contained in:
espie
2020-01-28 16:00:24 +00:00
parent 1d6f935587
commit a298a0f067

View File

@@ -1,5 +1,5 @@
# ex:ts=8 sw=4:
# $OpenBSD: State.pm,v 1.63 2019/12/04 10:45:19 espie Exp $
# $OpenBSD: State.pm,v 1.64 2020/01/28 16:00:24 espie Exp $
#
# Copyright (c) 2007-2014 Marc Espie <espie@openbsd.org>
#
@@ -23,7 +23,7 @@ package OpenBSD::PackageRepositoryFactory;
sub new
{
my ($class, $state) = @_;
bless {state => $state}, $class;
return bless {state => $state}, $class;
}
sub locator