Bug 12948: Use word indexing for language (MARC21)
[koha.git] / C4 / SIP / Sip / Configuration / Service.pm
blob5784b9d8edb91c1afe9910bcc199e0f4bff3dd3d
6 package C4::SIP::Sip::Configuration::Service;
8 use strict;
9 use warnings;
11 sub new {
12 my ($class, $obj) = @_;
13 my $type = ref($class) || $class;
15 if (ref($obj) eq "HASH") {
16 # Just bless the object
17 return bless $obj, $type;
20 return bless {}, $type;