Skip to content

Commit

Permalink
refactor: removed empty secondary constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
joragua committed Jan 21, 2025
1 parent 5979aa1 commit aa44bc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import timber.log.Timber
*/
class ViewPagerWorkAround : ViewPager {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs) {}
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)

@SuppressLint("ClickableViewAccessibility")
override fun onTouchEvent(ev: MotionEvent?): Boolean {
Expand Down

0 comments on commit aa44bc2

Please sign in to comment.