Skip to content

Commit 8b1eff0

Browse files
committed
Remove extra blank lines
1 parent 8860259 commit 8b1eff0

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

templates/unity/Assets/Runtime/Core/CookieContainer.cs.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ namespace {{ spec.title | caseUcfirst }}
4343
public bool MatchesPath(string requestPath) =>
4444
string.IsNullOrEmpty(Path) || requestPath.StartsWith(Path, StringComparison.OrdinalIgnoreCase);
4545

46-
4746
public override string ToString()
4847
{
4948
return $"{Name}={Value} " +

templates/unity/Assets/Runtime/Realtime.cs.twig

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ namespace {{ spec.title | caseUcfirst }}
126126
public RealtimeSubscription Subscribe(string[] channels, Action<RealtimeResponseEvent<Dictionary<string, object>>> callback)
127127
{
128128
Debug.Log($"[Realtime] Subscribe called for channels: [{string.Join(", ", channels)}]");
129-
129+
130130
var subscriptionId = ++_subscriptionCounter;
131131
var subscription = new RealtimeSubscription
132132
{
@@ -136,17 +136,14 @@ namespace {{ spec.title | caseUcfirst }}
136136
};
137137

138138
_subscriptions[subscriptionId] = subscription;
139-
139+
140140
// Add channels to the set
141141
foreach (var channel in channels)
142142
{
143143
_channels.Add(channel);
144144
}
145-
146-
CreateSocket().Forget();
147-
148-
149145

146+
CreateSocket().Forget();
150147

151148
return subscription;
152149
}

templates/unity/README.md.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ https://github.com/{{ sdk.gitUserName|url_encode }}/{{ sdk.gitRepoName|url_encod
4242

4343
## Dependencies
4444

45-
4645
This SDK requires the following Unity packages and libraries:
4746

4847
- [**UniTask**](https://github.com/Cysharp/UniTask): For async/await support in Unity

0 commit comments

Comments
 (0)