Remove leftover API v1 cruft

The v1 API has been removed, but there were some leftover artifacts in our
api version module.

Change-Id: I47f212d4dfe5a94ef57e93b517fc57e874d404bd
This commit is contained in:
Sean McGinnis 2017-09-15 11:42:09 -06:00
parent 966a1fdb2b
commit 45986fc94f
1 changed files with 0 additions and 5 deletions

View File

@ -115,7 +115,6 @@ REST_API_VERSION_HISTORY = """
# Explicitly using /v2 endpoints will still work
_MIN_API_VERSION = "3.0"
_MAX_API_VERSION = "3.44"
_LEGACY_API_VERSION1 = "1.0"
_LEGACY_API_VERSION2 = "2.0"
@ -130,10 +129,6 @@ def max_api_version():
return APIVersionRequest(_MAX_API_VERSION)
def legacy_api_version1():
return APIVersionRequest(_LEGACY_API_VERSION1)
def legacy_api_version2():
return APIVersionRequest(_LEGACY_API_VERSION2)