From f249d4843e36fe6ca5319b3324875802e3ee0fad Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 2 Jun 2006 21:03:26 +0000 Subject: [PATCH] redundant attribute check removed git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9141 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/Modules/utils.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/SWIG/Source/Modules/utils.cxx b/SWIG/Source/Modules/utils.cxx index ef753cd61..b22b9acdd 100644 --- a/SWIG/Source/Modules/utils.cxx +++ b/SWIG/Source/Modules/utils.cxx @@ -33,7 +33,6 @@ int is_member_director(Node* parentnode, Node* member) { int director_mode = Swig_director_mode(); - if (checkAttribute(member,"director","1")) return 1; if (parentnode && checkAttribute(member, "storage", "virtual")) { int parent_nodirector = GetFlag(parentnode,"feature:nodirector"); if (parent_nodirector) return 0;