diff --git a/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/FancyShowCaseView.kt b/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/FancyShowCaseView.kt index 83850ce..5d4f60d 100644 --- a/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/FancyShowCaseView.kt +++ b/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/FancyShowCaseView.kt @@ -185,9 +185,7 @@ class FancyShowCaseView @JvmOverloads constructor(context: Context, attrs: Attri }) } - /** - * Starts enter animation of FancyShowCaseView - */ @TargetApi(Build.VERSION_CODES.LOLLIPOP) + @TargetApi(Build.VERSION_CODES.LOLLIPOP) private fun startEnterAnimation() { animationPresenter.enterAnimation( { doCircularEnterAnimation() }, diff --git a/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/internal/FancyImageView.kt b/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/internal/FancyImageView.kt index 07e3b0a..fb22eea 100644 --- a/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/internal/FancyImageView.kt +++ b/fancyshowcaseview/src/main/java/me/toptas/fancyshowcase/internal/FancyImageView.kt @@ -150,11 +150,6 @@ class FancyImageView : AppCompatImageView { } } - /** - * Draws focus circle - * - * @param canvas canvas to draw - */ private fun drawCircle(canvas: Canvas) { canvas.drawCircle(presenter.circleCenterX.toFloat(), presenter.circleCenterY.toFloat(), presenter.circleRadius(animCounter, animMoveFactor), erasePaint)