From 16f859249704905282ba9d77e4cc54ed6251b002 Mon Sep 17 00:00:00 2001 From: hevinci Date: Mon, 22 Aug 2022 19:12:55 +0800 Subject: [PATCH] Update AssetBundleCollector --- .../AssetBundleCollector/AssetBundleCollectorSetting.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/YooAsset/Editor/AssetBundleCollector/AssetBundleCollectorSetting.cs b/Assets/YooAsset/Editor/AssetBundleCollector/AssetBundleCollectorSetting.cs index bb37e7b..818fc1f 100644 --- a/Assets/YooAsset/Editor/AssetBundleCollector/AssetBundleCollectorSetting.cs +++ b/Assets/YooAsset/Editor/AssetBundleCollector/AssetBundleCollectorSetting.cs @@ -74,7 +74,7 @@ namespace YooAsset.Editor if (result.ContainsKey(assetInfo.AssetPath) == false) result.Add(assetInfo.AssetPath, assetInfo); else - throw new Exception($"The collecting asset file is existed : {assetInfo.AssetPath} in group setting."); + throw new Exception($"The collecting asset file is existed : {assetInfo.AssetPath}"); } } @@ -90,7 +90,7 @@ namespace YooAsset.Editor if (adressTemper.Contains(address) == false) adressTemper.Add(address); else - throw new Exception($"The address is existed : {address} in group setting."); + throw new Exception($"The address is existed : {address}"); } } }