mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-01-11 17:13:55 +01:00
remove some redundant brackets
This commit is contained in:
parent
61a621fc3c
commit
aaab1593c0
@ -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 New Issue
Block a user