remove some redundant brackets

This commit is contained in:
tibbi 2017-01-07 12:27:08 +01:00
parent 61a621fc3c
commit aaab1593c0

View file

@ -15,11 +15,9 @@ class MyScalableRecyclerView : RecyclerView {
var mLastUp = 0L // allow only pinch zoom, not double tap var mLastUp = 0L // allow only pinch zoom, not double tap
} }
constructor(context: Context) : super(context) { constructor(context: Context) : super(context)
}
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) { constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
}
init { init {
mScaleDetector = ScaleGestureDetector(context, GestureListener()) mScaleDetector = ScaleGestureDetector(context, GestureListener())