Skip to content

Commit 0917a2a

Browse files
authored
removed redundant slashes (#631)
1 parent fd1b9af commit 0917a2a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Directory.Build.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,8 +505,8 @@ void PrintFailedTests(XElement element)
505505
<SDK Include="iOS"/>
506506
<SDK Include="Android"/>
507507
</ItemGroup>
508-
<Message Importance="High" Text="Replacing $(SentryArtifactsDestination)/%(SDK.Identity)" />
509-
<RemoveDir Directories="$(SentryArtifactsDestination)/%(SDK.Identity)" />
510-
<Exec Command="gh run download $(LastSuccessfulRunId) -n &quot;%(SDK.Identity)-sdk&quot; -D &quot;$(SentryArtifactsDestination)/%(SDK.Identity)&quot;" />
508+
<Message Importance="High" Text="Replacing $(SentryArtifactsDestination)%(SDK.Identity)" />
509+
<RemoveDir Directories="$(SentryArtifactsDestination)%(SDK.Identity)" />
510+
<Exec Command="gh run download $(LastSuccessfulRunId) -n &quot;%(SDK.Identity)-sdk&quot; -D &quot;$(SentryArtifactsDestination)%(SDK.Identity)&quot;" />
511511
</Target>
512512
</Project>

src/Sentry.Unity.Native/SentryNativeBridge.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ public static void Init(SentryUnityOptions options)
8383

8484
public static void Close() => sentry_close();
8585

86-
/// Call after native init() to check if the application has crashed in the previous run and clear the status.
87-
/// Because the file is removed, the result will change on subsequent calls so it must be cached for the current runtime.
86+
// Call after native init() to check if the application has crashed in the previous run and clear the status.
87+
// Because the file is removed, the result will change on subsequent calls so it must be cached for the current runtime.
8888
internal static bool HandleCrashedLastRun(SentryUnityOptions options)
8989
{
9090
var result = sentry_get_crashed_last_run() == 1;

src/Sentry.Unity/Integrations/IApplication.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ internal interface IApplication
1616
RuntimePlatform Platform { get; }
1717
}
1818

19+
/// <summary>
1920
/// Semi-internal class to be used by other Sentry.Unity assemblies
21+
/// </summary>
2022
public sealed class ApplicationAdapter : IApplication
2123
{
2224
public static readonly ApplicationAdapter Instance = new();

0 commit comments

Comments
 (0)