remove empty method

This commit is contained in:
Luke Wass 2025-05-28 21:03:03 -05:00
parent 893de14c79
commit cb793860c0

View file

@ -57,23 +57,15 @@ class WidgetOverlayView : ViewGroup {
preview = Widget.byId(context, widgetId)?.getPreview(context)
}
constructor(context: Context) : super(context) {
init()
}
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) {
init()
}
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(
context,
attrs,
defStyle
) {
init()
}
private fun init() { }
)
override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)