We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5b7431 commit 189c24dCopy full SHA for 189c24d
utils/src/main/java/com/haoge/easyandroid/easy/EasyBundle.kt
@@ -327,8 +327,4 @@ abstract class TypeGeneric<T>(private val raw:Class<*>) {
327
val type = (this.javaClass.genericSuperclass as ParameterizedType).actualTypeArguments[0]
328
return if (type is Class<*> || type is ParameterizedType) type else raw
329
}
330
-}
331
-
332
-fun Bundle.put(key:String, value:Any?):Bundle = EasyBundle.create(this).put(key, value).bundle
333
-fun Bundle.put(map: Map<String, Any?>):Bundle = EasyBundle.create(this).put(map).bundle
334
-fun Bundle.put(vararg params:Pair<String, Any?>):Bundle = EasyBundle.create(this).put(*params).bundle
+}
0 commit comments