Removing some dead code

This commit is contained in:
Strahinja Val Markovic 2013-04-09 18:43:29 -07:00
parent dad9488fbe
commit 27d73e0d51

View File

@ -71,11 +71,7 @@ class JediCompleter( Completer ):
def AsyncCandidateRequestReadyInner( self ):
if self._completion_thread.is_alive():
return WaitAndClear( self._candidates_ready, timeout=0.005 )
else:
self._start_completion_thread()
return False
return WaitAndClear( self._candidates_ready, timeout=0.005 )
def CandidatesFromStoredRequestInner( self ):