diff options
Diffstat (limited to 'python/library.go')
-rw-r--r-- | python/library.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/python/library.go b/python/library.go index 65c1352e..58ee55fb 100644 --- a/python/library.go +++ b/python/library.go @@ -22,7 +22,6 @@ import ( func init() { android.RegisterModuleType("python_library_host", PythonLibraryHostFactory) - android.RegisterModuleType("python_library", PythonLibraryFactory) } func PythonLibraryHostFactory() android.Module { @@ -30,9 +29,3 @@ func PythonLibraryHostFactory() android.Module { return module.Init() } - -func PythonLibraryFactory() android.Module { - module := newModule(android.HostAndDeviceSupported, android.MultilibBoth) - - return module.Init() -} |