Bugzilla – Attachment 153451 Details for
Bug 33745
Speed up Koha::Object attribute accessors
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33745: (QA follow-up) Tidy
Bug-33745-QA-follow-up-Tidy.patch (text/plain), 1.35 KB, created by
Marcel de Rooy
on 2023-07-14 09:55:43 UTC
(
hide
)
Description:
Bug 33745: (QA follow-up) Tidy
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2023-07-14 09:55:43 UTC
Size:
1.35 KB
patch
obsolete
>From bd5ae116fe2d182af24a0219668424709485ffb2 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Fri, 14 Jul 2023 09:29:59 +0000 >Subject: [PATCH] Bug 33745: (QA follow-up) Tidy >Content-Type: text/plain; charset=utf-8 > >--- > Koha/Object.pm | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > >diff --git a/Koha/Object.pm b/Koha/Object.pm >index f045169418..190b57cde9 100644 >--- a/Koha/Object.pm >+++ b/Koha/Object.pm >@@ -907,19 +907,20 @@ sub AUTOLOAD { > > my @columns = @{$self->_columns()}; > if ( grep { $_ eq $method } @columns ) { >+ > # Lazy definition of get/set accessors like $item->barcode; note that it contains $method > my $accessor = sub { > my $self = shift; >- if ( @_ ) { >- $self->_result()->set_column( $method, @_); >+ if (@_) { >+ $self->_result()->set_column( $method, @_ ); > return $self; > } else { >- return $self->_result()->get_column( $method ); >+ return $self->_result()->get_column($method); > } > }; > no strict 'refs'; > *{$AUTOLOAD} = $accessor; >- return $accessor->($self, @_); >+ return $accessor->( $self, @_ ); > } > > my @known_methods = qw( is_changed id in_storage get_column discard_changes make_column_dirty ); >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33745
:
151273
|
151274
|
151275
|
151290
|
153449
|
153450
|
153451
|
153452
|
153510
|
153525
|
153584
|
153586