Skip to content

Commit

Permalink
💡Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lsaudon committed Sep 12, 2023
1 parent 8d2cc0e commit a24e94f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 21 deletions.
4 changes: 1 addition & 3 deletions src/commands/commandParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,5 @@ export class CommandParameters {
readonly uri: vscode.Uri,
readonly range: vscode.Range,
readonly value: string,
) {
// do nothing.
}
) {}
}
4 changes: 1 addition & 3 deletions src/commands/editFilesParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,5 @@ export class EditFilesParameters {
readonly keyValue: KeyValuePair,
readonly description: string | null,
readonly placeholders: Placeholder[],
) {
// do nothing.
}
) {}
}
4 changes: 1 addition & 3 deletions src/extension/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,4 @@ export function activate(context: vscode.ExtensionContext): void {
context.subscriptions.push(vscode.commands.registerCommand('l10nization.sortArbFiles', async (): Promise<void> => sortAndSave()));
}

export function deactivate(): void {
// Do nothing.
}
export function deactivate(): void {}
4 changes: 1 addition & 3 deletions src/extension/keyValuePair.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ export class KeyValuePair {
constructor(
readonly key: string,
readonly value: string,
) {
// do nothing.
}
) {}
}
4 changes: 1 addition & 3 deletions src/placeholders/placeholder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ export class Placeholder {
readonly name: string,
readonly value: string,
readonly type: PlaceholderType,
) {
// do nothing.
}
) {}

addFormat(value: string): this {
this.format = value;
Expand Down
4 changes: 1 addition & 3 deletions src/placeholders/placeholderType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@ export function getPlaceholderType(placeholderTypeValue: string) {
}

export class PlaceholderTypeItem implements QuickPickItem {
constructor(readonly label: string) {
// do nothing.
}
constructor(readonly label: string) {}
}
4 changes: 1 addition & 3 deletions src/quickPick/showQuickPick.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import * as vscode from 'vscode';

export class LionizationPickItem implements vscode.QuickPickItem {
constructor(readonly label: string) {
// do nothing.
}
constructor(readonly label: string) {}
}

export async function showQuickPick(title: string, items: LionizationPickItem[]): Promise<string> {
Expand Down

0 comments on commit a24e94f

Please sign in to comment.