From c3bbfe2736a773f9f03fa25c0575608e9ee6c13c Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 09 十二月 2025 17:12:38 +0800
Subject: [PATCH] 0312 优化字符串拼接 - 改名
---
Main/System/ClientVersion/VersionUtility.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Main/System/ClientVersion/VersionUtility.cs b/Main/System/ClientVersion/VersionUtility.cs
index 0a79593..59798e7 100644
--- a/Main/System/ClientVersion/VersionUtility.cs
+++ b/Main/System/ClientVersion/VersionUtility.cs
@@ -18,7 +18,7 @@
public static readonly string[] VERSION_URL = new string[] {
"http://xssgcenter.secondworld.net.cn:11000/center/appversion_new.php/?"};
- public string androidRoot { get { return string.Empty;/*StringUtility.Contact(SDKUtils.Instance.DeviceRootPath, "/", VersionConfig.Get().bundleIdentifier);*/ } }
+ public string androidRoot { get { return string.Empty;/*StringUtility.Concat(SDKUtils.Instance.DeviceRootPath, "/", VersionConfig.Get().bundleIdentifier);*/ } }
public DownloadHotTask downloadTask;
private string versionUrl;
@@ -66,7 +66,7 @@
//tables["game"] = VersionConfig.Get().gameId;
- //var url = StringUtility.Contact(VERSION_URL[urlIndex % 2], HttpRequest.HashtablaToString(tables));
+ //var url = StringUtility.Concat(VERSION_URL[urlIndex % 2], HttpRequest.HashtablaToString(tables));
//urlIndex++;
//versionUrl = url;
//Debug.Log("http鍦板潃:versionUrl " + url);
@@ -143,7 +143,7 @@
return string.Empty;
var remoteURL = GetApkRemoteUrl();
var fileName = Path.GetFileName(remoteURL);
- return StringUtility.Contact(androidRoot, "/", fileName);
+ return StringUtility.Concat(androidRoot, "/", fileName);
}
public string GetApkRemoteUrl()
--
Gitblit v1.8.0