Skip to content

Commit d4231de

Browse files
committed
Remove commented out code
Commented out code may be misleading or obsolete, better not keep it around.
1 parent ca7dc6e commit d4231de

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pygccxml/declarations/decl_printer.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,7 @@ def is_builtin_decl(decl):
110110

111111
@staticmethod
112112
def __nice_decl_name(inst):
113-
name = inst.__class__.__name__
114-
return name
115-
# if name.endswith( '_t' ):
116-
# name = name[:-len('_t')]
117-
# return name.replace( '_', ' ' )
113+
return inst.__class__.__name__
118114

119115
def print_decl_header(self):
120116
header = self.__nice_decl_name(

0 commit comments

Comments
 (0)