Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,4 @@ internal class UnityInternalInterfaceImpl(
)
)
}

@Deprecated("Obsolete, will be removed in a future release.")
override fun installUnityThreadSampler() {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,4 @@ interface UnityInternalInterface :
statusCode: Int,
traceId: String?,
)

/**
* @suppress
*/
@Deprecated("Obsolete, will be removed in a future release.")
fun installUnityThreadSampler()
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,4 @@ internal class NoopUnityInternalInterface(
traceId: String?,
) {
}

@Deprecated("Obsolete, will be removed in a future release.")
override fun installUnityThreadSampler() {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ internal class NoopUnityInternalInterfaceTest {
)
}

@Suppress("DEPRECATION")
@Test
fun `check no errors thrown when invoked`() {
impl.setUnityMetaData("unityVersion", "buildGuid", "unitySdkVersion")
Expand All @@ -44,6 +43,5 @@ internal class NoopUnityInternalInterfaceTest {
200,
"traceId"
)
impl.installUnityThreadSampler()
}
}
Loading