[Python] Remove unused method function_exists(…) in capi.py

This commit is contained in:
practicalswift
2016-03-12 23:47:57 +01:00
parent 67c7758f31
commit f38b613f4b

View File

@@ -624,14 +624,6 @@ class Config(object):
return library
def function_exists(self, name):
try:
getattr(self.lib, name)
except AttributeError:
return False
return True
conf = Config()
conf.lib.sourcekitd_initialize()