Remove stray semicolons

This commit is contained in:
Danny Lin 2021-11-10 15:34:17 -08:00
parent ad625abac3
commit aa36aa6f13
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
import { EXT_PARTITIONS } from '../util/partitions';
import { EXT_PARTITIONS } from '../util/partitions'
export interface BlobEntry {
partition: string

View file

@ -44,7 +44,7 @@ export async function loadPartitionProps(sourceRoot: string) {
continue
}
let props = parseProps(await fs.readFile(propPath, { encoding: 'utf8' }));
let props = parseProps(await fs.readFile(propPath, { encoding: 'utf8' }))
partProps.set(partition, props)
}

View file

@ -118,7 +118,7 @@ function getRelativeInstallPath(entry: BlobEntry, pathParts: Array<string>, inst
}
let subpath = pathParts.slice(1, -1).join('/')
return subpath.length == 0 ? null : subpath;
return subpath.length == 0 ? null : subpath
}
export function blobToSoongModule(