You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
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";
The text was updated successfully, but these errors were encountered:
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";
The text was updated successfully, but these errors were encountered: