From cf9422b4d985faee722643c8b8ccda954d10063e Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Mon, 11 Jul 2022 15:32:43 +1200 Subject: [PATCH] [php] Stop setting unused php:proxy attribute This is no longer used since we changed how classes are wrapped. --- Source/Modules/php.cxx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/Modules/php.cxx b/Source/Modules/php.cxx index 67f7f1f19..7c7735a65 100644 --- a/Source/Modules/php.cxx +++ b/Source/Modules/php.cxx @@ -1613,11 +1613,6 @@ public: * ------------------------------------------------------------ */ virtual int classDeclaration(Node *n) { - if (!Getattr(n, "feature:onlychildren")) { - String *symname = Getattr(n, "sym:name"); - Setattr(n, "php:proxy", symname); - } - return Language::classDeclaration(n); }