mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-06-05 21:59:19 +02:00
remove some redundant brackets
This commit is contained in:
@ -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())
|
||||
|
Reference in New Issue
Block a user