Remove outdated maintainer JSON data and helper scripts

Change-Id: If419eee9a1725f8bbd9082ee5859f560b0f4aab5
diff --git a/json/converter.py b/json/converter.py
deleted file mode 100644
index 007e36d..0000000
--- a/json/converter.py
+++ /dev/null
@@ -1,38 +0,0 @@
-import json
-
-# Previous/new JSON file here
-old_file_name = "profile.json"
-new_file_name = "profile_new.json"
-
-# Read previous JSON
-with open(old_file_name, "r") as read_json:
-	old_data = json.load(read_json)
-	print("JSON loaded successfully. Beginning conversion...")
-
-# Initialize new dictionary
-user_list = []
-
-# Conversion
-index = 0
-for i in old_data["Name"]:
-	user = {}
-	user["name"] = i
-	user["email"] = old_data["Email"][index][7:]
-	user["avatar"] = old_data["Avatar"][index]
-	user["description"] = old_data["Description"][index]
-	user["github"] = old_data["Github"][index]
-	user["xda"] = old_data["XDA"][index]
-	user["facebook"] = old_data["Facebook"][index]
-	user["twitter"] = old_data["Twitter"][index]
-	user["instagram"] = old_data["Instagram"][index]
-	user["googleplus"] = old_data["GooglePlus"][index]
-	user_list.append(user)
-	index += 1
-	
-# Verify each user
-for i in user_list:
-	print(i)
-
-# Write new JSON
-with open(new_file_name, "w") as write_json:
-	json.dump(user_list, write_json, indent=4)
\ No newline at end of file
diff --git a/json/maintainers.json b/json/maintainers.json
deleted file mode 100644
index d3929c8..0000000
--- a/json/maintainers.json
+++ /dev/null
@@ -1,42 +0,0 @@
-[
-   {
-       "name": "tioburla",
-       "email": "tioburla@blissroms.com",
-       "device": [
-           "santoni"
-       ]
-   },
-   {
-       "name": "Eric Park (ideaman924)",
-       "email": "ideaman924@blissroms.com",
-       "device": [
-           "bullhead"
-       ]
-   },
-   {
-       "name": "Jon West (electrikjesus)",
-       "email": "electrikjesus@blissroms.com",
-       "device": [
-           "GSI",
-           "x86/x86_64",
-           "EFI"
-       ]
-   },
-   {
-       "name": "Wes Goodrich (bcrichster)",
-       "email": "bcrichster@blissroms.com",
-       "device": [
-           "payton",
-           "owens",
-           "warp4"
-       ]
-   },
-   {
-        "name": "Beau Echols (REV3NT3CH)",
-        "email": "rev3nt3ch@blissroms.com",
-        "device": [
-            "dumpling",
-            "cheeseburger"
-        ]
-    }
-]
diff --git a/json/maintainers.py b/json/maintainers.py
deleted file mode 100644
index 4d40ff0..0000000
--- a/json/maintainers.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import json
-
-user_list = []
-
-user = {}
-
-user["name"] = input("Name: ")
-user["email"] = input("Email: ")
-user["device"] = []
-
-while True:
-	device_name = input("Device codename (type -1 to end): ")
-	if device_name == "-1":
-		break
-	user["device"].append(device_name)
-
-user_list.append(user)
-
-print("Finished! Please give the following output to Eric:")
-print(json.dumps(user_list, indent=4))
\ No newline at end of file