1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

metadata: remove unused fields and types

BuildVersion and UseBuilt were only ever used in the .txt format, which is
gone.
This commit is contained in:
Hans-Christoph Steiner 2021-07-23 09:38:09 -07:00
parent 0d555a2fe2
commit 074ea8cae3
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA

View File

@ -186,8 +186,6 @@ class App(dict):
return Build()
TYPE_UNKNOWN = 0
TYPE_OBSOLETE = 1
TYPE_STRING = 2
TYPE_BOOL = 3
TYPE_LIST = 4
@ -202,8 +200,6 @@ fieldtypes = {
'Categories': TYPE_LIST,
'AntiFeatures': TYPE_LIST,
'Build': TYPE_BUILD,
'BuildVersion': TYPE_OBSOLETE,
'UseBuilt': TYPE_OBSOLETE,
}