소스 검색

proper comment formatting

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 4 년 전
부모
커밋
4fed61d3f3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/owncloud/android/ui/components/AvatarWithStatus.kt

+ 1 - 1
src/main/java/com/owncloud/android/ui/components/AvatarWithStatus.kt

@@ -40,7 +40,7 @@ class AvatarWithStatus(val roundedBitmapDrawable: RoundedBitmapDrawable) : Drawa
         val radius: Float = Math.min(width, height).toFloat() / 2f
 
         // Draw a red circle in the center
-        //canvas.drawBitmap(roundedBitmapDrawable.bitmap!!, 0f, 0f, null)
+        // canvas.drawBitmap(roundedBitmapDrawable.bitmap!!, 0f, 0f, null)
         canvas.drawCircle((width / 2).toFloat(), (height / 2).toFloat(), radius, redPaint)
     }