Skip to content

Commit ddcda80

Browse files
committed
Remove getters/setters for gccxml_path attribute in config.py
These were deprecated in pygccxml v1.7.0, and definitively removed for v1.8.0
1 parent 7fd9ae6 commit ddcda80

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

pygccxml/parser/config.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -238,25 +238,6 @@ def __init__(
238238
def clone(self):
239239
return copy.deepcopy(self)
240240

241-
@property
242-
def gccxml_path(self):
243-
"""
244-
Gccxml binary location
245-
246-
"""
247-
248-
warnings.warn(
249-
"gccxml_path is deprecated. \n" +
250-
"Please use xml_generator_path instead.", DeprecationWarning)
251-
return self.__gccxml_path
252-
253-
@gccxml_path.setter
254-
def gccxml_path(self, new_path):
255-
warnings.warn(
256-
"gccxml_path is deprecated. \n" +
257-
"Please use xml_generator_path instead.", DeprecationWarning)
258-
self.__gccxml_path = new_path
259-
260241
@property
261242
def xml_generator_path(self):
262243
"""

0 commit comments

Comments
 (0)