Deleting obsolete code

This commit is contained in:
Strahinja Val Markovic 2015-07-02 08:38:27 -07:00
parent 98d687a5e0
commit 8505544d23

View File

@ -21,7 +21,6 @@ from ycm import vimsupport
from ycmd import user_options_store from ycmd import user_options_store
from ycmd import request_wrap from ycmd import request_wrap
from ycmd import identifier_utils from ycmd import identifier_utils
import ycm_client_support
YCM_VAR_PREFIX = 'ycm_' YCM_VAR_PREFIX = 'ycm_'
@ -169,16 +168,3 @@ def OverlapLength( left_string, right_string ):
if left_string[ -length: ] == right_string[ :length ]: if left_string[ -length: ] == right_string[ :length ]:
best = length best = length
length += 1 length += 1
COMPATIBLE_WITH_CORE_VERSION = 16
def CompatibleWithYcmCore():
try:
current_core_version = ycm_client_support.YcmCoreVersion()
except AttributeError:
return False
return current_core_version == COMPATIBLE_WITH_CORE_VERSION