Skip to content

Commit

Permalink
Deprecate Unused Classes with Future Removal Note
Browse files Browse the repository at this point in the history
  • Loading branch information
teogor committed Sep 29, 2023
1 parent 89dbc61 commit 01eb81e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package dev.teogor.drifter.integration.core
import com.google.gson.Gson
import com.google.gson.reflect.TypeToken

@Deprecated("to be removed later on")
open class SharedElement<T : Any> {
lateinit var content: T

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package dev.teogor.drifter.integration.core

// todo same as UnityStorage
@Deprecated("to be removed later on")
open class Storage {
protected fun <T : Any> value(param: T): String {
return SharedElement(param).toJson()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import android.content.Context
import android.widget.Toast
import dev.teogor.drifter.integration.initializer.ActivityContextProvider.applicationContext

@Deprecated("to be removed later on")
class Validator {
@get:UnityCallback
var isDataChanged = false
Expand Down

0 comments on commit 01eb81e

Please sign in to comment.