Skip to content

Commit

Permalink
Remove unnecessary "async".
Browse files Browse the repository at this point in the history
  • Loading branch information
TomoyukiAota committed Nov 21, 2024
1 parent f449cc8 commit 9c9fafb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Logger } from '../../src-shared/log/logger';
import { commandLineOptionsValue } from './command-line-options-value';

export function setupIpcMainForCommandLineOptions() {
ipcMain.handle(IpcConstants.CommandLineOptions.Get, async () => {
ipcMain.handle(IpcConstants.CommandLineOptions.Get, () => {
Logger.info(`Received the IPC invoke request about getting commang line options.`);
return commandLineOptionsValue.get();
});
Expand Down

0 comments on commit 9c9fafb

Please sign in to comment.