Skip to content

Commit 295833c

Browse files
committed
chore(tool,import) : dispose result of async task to prevent warnings
1 parent 30eee69 commit 295833c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Plugins/Source/Editor/EditorWindows/InstallEOSZipWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ protected override void RenderWindow()
249249
// This should be the correct directory
250250
var projectDir = FileUtility.GetProjectPath();
251251
// TODO: Async not tested here.
252-
PackageFileUtility.CopyFilesToDirectory(projectDir, fileResults);
252+
_ = PackageFileUtility.CopyFilesToDirectory(projectDir, fileResults);
253253
}
254254
}
255255

0 commit comments

Comments
 (0)