From 8505544d23a94a95e1abae0baa3fe6f832352bdf Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Thu, 2 Jul 2015 08:38:27 -0700 Subject: [PATCH] Deleting obsolete code --- python/ycm/base.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/python/ycm/base.py b/python/ycm/base.py index d0ffc648..58e8becf 100644 --- a/python/ycm/base.py +++ b/python/ycm/base.py @@ -21,7 +21,6 @@ from ycm import vimsupport from ycmd import user_options_store from ycmd import request_wrap from ycmd import identifier_utils -import ycm_client_support YCM_VAR_PREFIX = 'ycm_' @@ -169,16 +168,3 @@ def OverlapLength( left_string, right_string ): if left_string[ -length: ] == right_string[ :length ]: best = length 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 - -