cull(engine-cleanup): pass-9 cascade round 2 after DialogBase stub
This commit is contained in:
@@ -293,17 +293,4 @@ public class NetworkManager : MonoBehaviour, IManager
|
||||
{
|
||||
unityWebRequest.Dispose();
|
||||
}
|
||||
|
||||
public void StopConnectCoroutine()
|
||||
{
|
||||
if (connectCoroutine != null)
|
||||
{
|
||||
if (RealTimeNetworkAgent.IsNormalNetworkBattle())
|
||||
{
|
||||
LocalLog.AccumulateLastTraceLog("NetworkManager_StopConnectCoroutine " + StackTraceUtility.ExtractStackTrace());
|
||||
}
|
||||
StopCoroutine(connectCoroutine);
|
||||
isConnect = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -476,11 +476,6 @@ public class NetworkTask
|
||||
return false;
|
||||
}
|
||||
|
||||
public void GotoStore()
|
||||
{
|
||||
BrowserURL.Open(getDataHeader()["store_url"].ToString());
|
||||
}
|
||||
|
||||
private bool isResourceVersionUp()
|
||||
{
|
||||
if (getDataHeader().Keys.Contains("required_res_ver"))
|
||||
|
||||
@@ -16,14 +16,6 @@ public class FavoriteTask : BaseTask
|
||||
public string[] favorite_remove;
|
||||
}
|
||||
|
||||
public void SetParameter(string[] add, string[] remove)
|
||||
{
|
||||
FavoriteTaskParam favoriteTaskParam = new FavoriteTaskParam();
|
||||
favoriteTaskParam.favorite_add = add;
|
||||
favoriteTaskParam.favorite_remove = remove;
|
||||
base.Params = favoriteTaskParam;
|
||||
}
|
||||
|
||||
public FavoriteTask(Kind kind)
|
||||
{
|
||||
switch (kind)
|
||||
|
||||
@@ -29,12 +29,6 @@ public class WebViewHelper
|
||||
|
||||
public enum UrlType
|
||||
{
|
||||
POLICY,
|
||||
FACEBOOK,
|
||||
RECOMMENDED_DEVICE,
|
||||
GAME_GUIDE,
|
||||
NICONICO,
|
||||
NICONICO_PUBLISH
|
||||
}
|
||||
|
||||
private bool _isDestroyedWebView;
|
||||
@@ -201,9 +195,4 @@ public class WebViewHelper
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void PrepareOpenUrl(Action onFinish)
|
||||
{
|
||||
onFinish();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user