Skip to content

Commit deb3f01

Browse files
committed
add using stmt
1 parent 3b17b5f commit deb3f01

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Runtime/Aptabase.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.Threading;
44
using System.Threading.Tasks;
55
using UnityEngine;
6+
using Random = UnityEngine.Random;
67

78
namespace AptabaseSDK
89
{
@@ -165,7 +166,7 @@ private static int GetFlushInterval()
165166
return _env.isDebug ? 2000 : 60000;
166167
}
167168

168-
public static string NewSessionId()
169+
private static string NewSessionId()
169170
{
170171
var epochInSeconds = DateTimeOffset.UtcNow.ToUnixTimeSeconds();
171172
var random = Random.Range(0, 99999999);

0 commit comments

Comments
 (0)