Skip to content

Commit 66f755a

Browse files
committed
Fix spacing
1 parent 804650b commit 66f755a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/storage/upgrade_project.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,18 @@ export async function upgradeProjectIfNecessary(
5454
}
5555

5656
async function upgradeFrom_000_to_001(
57-
_storage: commonStorage.Storage,
58-
_projectName: string,
59-
projectInfo: storageProject.ProjectInfo): Promise<void> {
57+
_storage: commonStorage.Storage,
58+
_projectName: string,
59+
projectInfo: storageProject.ProjectInfo): Promise<void> {
6060
// Project was saved without a project.info.json file.
6161
// Nothing needs to be done to upgrade to '0.0.1';
6262
projectInfo.version = '0.0.1';
6363
}
6464

6565
async function upgradeFrom_001_to_002(
66-
storage: commonStorage.Storage,
67-
projectName: string,
68-
projectInfo: storageProject.ProjectInfo): Promise<void> {
66+
storage: commonStorage.Storage,
67+
projectName: string,
68+
projectInfo: storageProject.ProjectInfo): Promise<void> {
6969
// Modules were saved without private components.
7070
// The Robot's mrc_mechanism_component_holder block was saved without hidePrivateComponents.
7171
const projectFileNames: string[] = await storage.list(
@@ -101,9 +101,9 @@ async function upgradeFrom_001_to_002(
101101
}
102102

103103
async function upgradeFrom_002_to_003(
104-
storage: commonStorage.Storage,
105-
projectName: string,
106-
projectInfo: storageProject.ProjectInfo): Promise<void> {
104+
storage: commonStorage.Storage,
105+
projectName: string,
106+
projectInfo: storageProject.ProjectInfo): Promise<void> {
107107
// Opmodes had robot as a parameter to init method
108108
const projectFileNames: string[] = await storage.list(
109109
storageNames.makeProjectDirectoryPath(projectName));

0 commit comments

Comments
 (0)