remove some redundant brackets
This commit is contained in:
parent
61a621fc3c
commit
aaab1593c0
1 changed files with 2 additions and 4 deletions
|
@ -15,11 +15,9 @@ class MyScalableRecyclerView : RecyclerView {
|
|||
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 {
|
||||
mScaleDetector = ScaleGestureDetector(context, GestureListener())
|
||||
|
|
Loading…
Reference in a new issue