tvbarthel / CameraColorPicker

Camera Color Picker is an Android application that lets you capture, in real time, the colors around you using the camera of your device
http://tvbarthel.github.io/CameraColorPicker/
Apache License 2.0
221 stars 75 forks source link

Single line comments are not following Javadoc Standard #34

Closed Ahmed9914 closed 7 years ago

Ahmed9914 commented 7 years ago

Hi, For single line comments, you are using this pattern

/**
 * Single line comment.
 */

But it should be like this: /** Single line comment. */

according to [https://source.android.com/source/code-style#use-javadoc-standard-comments]()

Thanks.