Kotlin / kotlinx-rpc

Add asynchronous RPC services to your multiplatform applications.
https://kotlin.github.io/kotlinx-rpc/
Apache License 2.0
749 stars 17 forks source link

Remove unused and inactive annotation #182

Closed kez-lab closed 2 months ago

kez-lab commented 2 months ago

Subsystem sample module

Problem Description This PR addresses the removal of unused and inactive annotations in the sample module, specifically @ExperimentalResourceApi. The related import import org.jetbrains.compose.resources.ExperimentalResourceApi was also removed because it was no longer needed. This cleanup helps maintain code quality by removing unnecessary experimental annotations that are not being used in the current implementation.

Solution Removed the @ExperimentalResourceApi annotation and its corresponding import (import org.jetbrains.compose.resources.ExperimentalResourceApi) from the sample module where it was inactive and not in use.

Mr3zee commented 2 months ago

Hi, @kez-lab ! Thank you for your contribution! If the CI checks are ok, I'll merge the PR