fix some lint warnings, remove unused code

This commit is contained in:
Conny Duck 2017-11-07 15:31:44 +01:00
commit 305d28a5c1
16 changed files with 11 additions and 86 deletions

View file

@ -1,14 +1,14 @@
package com.keylesspalace.tusky.view
import android.content.Context
import android.support.v7.widget.AppCompatImageView
import android.util.AttributeSet
import android.widget.ImageView
/**
* Created by charlag on 26/10/2017.
*/
class SquareImageView : ImageView {
class SquareImageView : AppCompatImageView {
constructor(context: Context) : super(context)
constructor(context: Context, attributes: AttributeSet) : super(context, attributes)