Skip to content

Commit c887a66

Browse files
committed
fixed hotfixdllplan init values
1 parent fda4cf0 commit c887a66

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Assets/OxGFrame/Hotfixer/Scripts/Editor/HotfixDllPlan.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ public class HotfixDllPlan
1010
[SerializeField]
1111
public string planName = string.Empty;
1212
[SerializeField]
13-
public List<string> aotDlls = new List<string>() { "*.dll" };
13+
public List<string> aotDlls = new List<string>();
1414
[SerializeField]
15-
public List<string> hotfixDlls = new List<string>() { "*.dll" };
15+
public List<string> hotfixDlls = new List<string>();
1616

1717
public HotfixDllPlan()
1818
{

0 commit comments

Comments
 (0)