Removes unnecessary public

This commit is contained in:
Eric Amodio
2017-03-11 00:37:00 -05:00
parent 762fa545c7
commit e7fedb3c51
7 changed files with 7 additions and 7 deletions

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -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);
}