Browse Source

Removes unnecessary public

main
Eric Amodio 7 years ago
parent
commit
e7fedb3c51
7 changed files with 7 additions and 7 deletions
  1. +1
    -1
      src/commands/closeUnchangedFiles.ts
  2. +1
    -1
      src/commands/copyMessageToClipboard.ts
  3. +1
    -1
      src/commands/copyShaToClipboard.ts
  4. +1
    -1
      src/commands/diffDirectory.ts
  5. +1
    -1
      src/commands/openChangedFiles.ts
  6. +1
    -1
      src/commands/showQuickRepoHistory.ts
  7. +1
    -1
      src/commands/showQuickRepoStatus.ts

+ 1
- 1
src/commands/closeUnchangedFiles.ts 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);
}

+ 1
- 1
src/commands/copyMessageToClipboard.ts 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);
}

+ 1
- 1
src/commands/copyShaToClipboard.ts 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);
}

+ 1
- 1
src/commands/diffDirectory.ts 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);
}

+ 1
- 1
src/commands/openChangedFiles.ts 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);
}

+ 1
- 1
src/commands/showQuickRepoHistory.ts 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);
}

+ 1
- 1
src/commands/showQuickRepoStatus.ts 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);
}

Loading…
Cancel
Save