Skip to content

Commit

Permalink
Avoid exporting symbols (#164940)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed Nov 14, 2022
1 parent 23cd002 commit 18d37b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/vs/base/common/diff/diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export interface IDiffResult {
// The code below has been ported from a C# implementation in VS
//

export class Debug {
class Debug {

public static Assert(condition: boolean, message: string): void {
if (!condition) {
Expand All @@ -78,7 +78,7 @@ export class Debug {
}
}

export class MyArray {
class MyArray {
/**
* Copies a range of elements from an Array starting at the specified source index and pastes
* them to another Array starting at the specified destination index. The length and the indexes
Expand Down
2 changes: 1 addition & 1 deletion src/vs/editor/browser/viewParts/viewZones/viewZones.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import * as viewEvents from 'vs/editor/common/viewEvents';
import { IEditorWhitespace, IViewWhitespaceViewportData, IWhitespaceChangeAccessor } from 'vs/editor/common/viewModel';
import { EditorOption } from 'vs/editor/common/config/editorOptions';

export interface IMyViewZone {
interface IMyViewZone {
whitespaceId: string;
delegate: IViewZone;
isInHiddenArea: boolean;
Expand Down

0 comments on commit 18d37b6

Please sign in to comment.