From aaab1593c0fdbde581f4a8fe2e2b582bd622cf34 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 7 Jan 2017 12:27:08 +0100 Subject: [PATCH] remove some redundant brackets --- .../gallery/views/MyScalableRecyclerView.kt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/views/MyScalableRecyclerView.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/views/MyScalableRecyclerView.kt index bd6b25654..c22db2902 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/views/MyScalableRecyclerView.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/views/MyScalableRecyclerView.kt @@ -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())