Bugzilla – Attachment #10281: Bug 8092 follow-up: Fix perlcritic violations for
bug #8092
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
View
|
Details
|
Raw Unified
| Return to
bug 8092
Collapse All
|
Expand All
(-)
a/Koha/Cache/Fastmmap.pm (-1 / +1 lines)
Lines 35-41 sub _cache_handle {
Link Here
35
cache_size => $params->{'cachesize'} || '1m',
35
cache_size => $params->{'cachesize'} || '1m',
36
);
36
);
37
} else {
37
} else {
38
return undef;
38
return;
39
}
39
}
40
}
40
}
41
41
(-)
a/Koha/Cache/Memory.pm (-2 / +1 lines)
Lines 36-42 sub _cache_handle {
Link Here
36
global => 1,
36
global => 1,
37
);
37
);
38
} else {
38
} else {
39
return undef;
39
return;
40
}
40
}
41
}
41
}
42
42
43
-
Return to
bug 8092