Skip to content

Commit 84bf6d5

Browse files
committed
[change] removed unnecessary field initialization in the HybridCLRSettings class.
1 parent 82163d2 commit 84bf6d5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Editor/Settings/HybridCLRSettings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class HybridCLRSettings : ScriptableSingleton<HybridCLRSettings>
4040
public string[] patchAOTAssemblies;
4141

4242
[Tooltip("don't preserve UnityEngine core types in link.xml")]
43-
public bool dontPreserveUnityEngineCoreTypesInLinkXml = false;
43+
public bool dontPreserveUnityEngineCoreTypesInLinkXml;
4444

4545
[Tooltip("output file of automatic generated link.xml by scanning hot update assemblies")]
4646
public string outputLinkFile = "HybridCLRGenerate/link.xml";
@@ -55,9 +55,9 @@ public class HybridCLRSettings : ScriptableSingleton<HybridCLRSettings>
5555
public int maxMethodBridgeGenericIteration = 10;
5656

5757
[Tooltip("enable profiler support when publishing in release mode")]
58-
public bool enableProfilerInReleaseBuild = false;
58+
public bool enableProfilerInReleaseBuild;
5959

6060
[Tooltip("enable StraceTrace support when publishing to the WebGL platform in release mode")]
61-
public bool enableStraceTraceInWebGLReleaseBuild = false;
61+
public bool enableStraceTraceInWebGLReleaseBuild;
6262
}
6363
}

0 commit comments

Comments
 (0)