remove pointless bothering message

This commit is contained in:
Ben Jackson 2018-05-26 20:41:57 +01:00
commit 45a8176de3
2 changed files with 1 additions and 5 deletions

View file

@ -110,7 +110,6 @@ class CodeView( object ):
self._UndisplaySigns()
self._breakpoints = defaultdict( list )
def ShowBreakpoints( self ):
self._UndisplaySigns()

View file

@ -218,11 +218,8 @@ class DebugSession( object ):
self._logger.info( 'Debug Adapter Started' )
def _ConfigurationDone( self ):
utils.UserMessage( "Debug adapter ready" )
def _Initialise( self ):
self._connection.DoRequest( lambda msg: self._ConfigurationDone(), {
self._connection.DoRequest( None, {
'command': 'initialize',
'arguments': {
'adapterID': self._configuration[ 'adapter' ].get( 'name', 'adapter' ),