mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-15 09:35:42 -05:00
Removes unnecessary public
This commit is contained in:
@@ -9,7 +9,7 @@ import * as path from 'path';
|
||||
|
||||
export class CloseUnchangedFilesCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, public repoPath: string) {
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
super(Commands.CloseUnchangedFiles);
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ import { copy } from 'copy-paste';
|
||||
|
||||
export class CopyMessageToClipboardCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, public repoPath: string) {
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
super(Commands.CopyMessageToClipboard);
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ import { copy } from 'copy-paste';
|
||||
|
||||
export class CopyShaToClipboardCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, public repoPath: string) {
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
super(Commands.CopyShaToClipboard);
|
||||
}
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ import { Logger } from '../logger';
|
||||
|
||||
export class DiffDirectoryCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, public repoPath: string) {
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
super(Commands.DiffDirectory);
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import * as path from 'path';
|
||||
|
||||
export class OpenChangedFilesCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, public repoPath: string) {
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
super(Commands.OpenChangedFiles);
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import { CommandQuickPickItem, RepoHistoryQuickPick } from '../quickPicks';
|
||||
|
||||
export class ShowQuickRepoHistoryCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, public repoPath: string) {
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
super(Commands.ShowQuickRepoHistory);
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import { CommandQuickPickItem, RepoStatusQuickPick } from '../quickPicks';
|
||||
|
||||
export class ShowQuickRepoStatusCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, public repoPath: string) {
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
super(Commands.ShowQuickRepoStatus);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user