Skip to content

Commit

Permalink
Remove unnecessary process imports
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-grant-work committed Aug 30, 2023
1 parent eee2ef1 commit ce00e76
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/debugAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/
import * as process from 'process';
import { logger } from '@vscode/debugadapter/lib/logger';
import { GDBDebugSession } from './GDBDebugSession';

Expand Down
1 change: 0 additions & 1 deletion src/debugTargetAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/
import * as process from 'process';
import { logger } from '@vscode/debugadapter/lib/logger';
import { GDBTargetDebugSession } from './GDBTargetDebugSession';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/
import * as process from 'process';
import { logger } from '@vscode/debugadapter/lib/logger';
import { GDBBackend } from '../../../GDBBackend';
import { GDBTargetDebugSession } from '../../../GDBTargetDebugSession';
Expand Down Expand Up @@ -40,8 +39,8 @@ class DynamicBreakpointOptionsGDBBackend extends GDBBackend {
const hardware = hardwareBreakpointTrue
? true
: hardwareBreakpointFalse
? false
: initialOptions.hardware;
? false
: initialOptions.hardware;
return { ...initialOptions, hardware };
}
}
Expand Down

0 comments on commit ce00e76

Please sign in to comment.