Skip to content

Commit fd1b9af

Browse files
authored
fix: android java close() calls (#632)
1 parent c85438f commit fd1b9af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sentry.Unity.Android/SentryJava.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static class SentryJava
3232
public static void Close()
3333
{
3434
using var jo = new AndroidJavaObject("io.sentry.Sentry");
35-
jo.CallStatic<AndroidJavaObject>("close");
35+
jo.CallStatic("close");
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)