bump-api-android icon indicating copy to clipboard operation
bump-api-android copied to clipboard

Use JavaDoc comments for functions, variables description

Open vovkab opened this issue 13 years ago • 0 comments

Please use JavaDoc comments, to describe functions, variables and etc in your code. Right now you use comments, which are obviously not a javadoc comments, and you can't get description of functions with this way.

Here how it looks right now: /* Broadcast when the api has successfully connected to the server. * You may now call enableBumping to enable bumping and matching. */ public static final String CONNECTED = "com.bumptech.api.connected";

Should be: /** * Broadcast when the api has successfully connected to the server. * You may now call enableBumping to enable bumping and matching. */ public static final String CONNECTED = "com.bumptech.api.connected";

vovkab avatar Sep 21 '12 01:09 vovkab