Skip to content

Commit

Permalink
initViews方法加入泛型参数
Browse files Browse the repository at this point in the history
  • Loading branch information
zyyoona7 committed Jul 17, 2018
1 parent 61928bb commit 783ebc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/zyyoona7/easypopup/kt/CustomPopup.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import com.zyyoona7.popup.BasePopup
* Created by zyyoona7 on 2017/9/19.
*/
class CustomPopup() : BasePopup<CustomPopup>() {
override fun initAttributes() {
override fun initViews(view: View?, popup: CustomPopup?) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}

override fun initViews(view: View?, popup: BasePopup<out BasePopup<*>>?) {
override fun initAttributes() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}

0 comments on commit 783ebc3

Please sign in to comment.