From ed53ecda0546d6c639fa3d227a59ace4d57b81a5 Mon Sep 17 00:00:00 2001 From: Upasana Date: Mon, 5 Mar 2018 00:58:41 +0100 Subject: Bug 1273381 - Improve bugzilla object performance by using Class::XSAccessor for object accessors --- Bugzilla/Whine.pm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Bugzilla/Whine.pm') diff --git a/Bugzilla/Whine.pm b/Bugzilla/Whine.pm index c4301b4f6..e00f9118b 100644 --- a/Bugzilla/Whine.pm +++ b/Bugzilla/Whine.pm @@ -39,6 +39,14 @@ use constant LIST_ORDER => 'id'; #################### # Simple Accessors # #################### + +use Class::XSAccessor { + accessors => { + id => __PACKAGE__->ID_FIELD, + name => __PACKAGE__->NAME_FIELD, + }, +}; + sub subject { return $_[0]->{'subject'}; } sub body { return $_[0]->{'body'}; } sub mail_if_no_bugs { return $_[0]->{'mailifnobugs'}; } -- cgit v1.2.3-24-g4f1b