From dd5c63552f1bb5e1ce195383329128141a7426f3 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Sat, 12 Nov 2022 11:01:20 -0800 Subject: [PATCH] chore: import adjustment build fix --- packages/core/file-system/file-system-access.android.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/file-system/file-system-access.android.ts b/packages/core/file-system/file-system-access.android.ts index cbcea607e..5962dd789 100644 --- a/packages/core/file-system/file-system-access.android.ts +++ b/packages/core/file-system/file-system-access.android.ts @@ -1,7 +1,7 @@ import * as textModule from '../text'; import { getNativeApplication } from '../application'; -import { Device } from '../../platform'; -import lazy from '../../utils/lazy'; +import { Device } from '../platform'; +import lazy from '../utils/lazy'; const sdkVersion = lazy(() => parseInt(Device.sdkVersion)); @@ -593,7 +593,7 @@ export class FileSystemAccess implements IFileSystemAccess { // for now it wont work on pre 26 as File does not normalize const file = new java.io.File(path); return file.getAbsolutePath(); - } + } } public joinPath(left: string, right: string): string {