Javadocs cleanup

This commit is contained in:
TfT_02
2013-08-10 20:10:45 +02:00
parent 4ff6b5fbc7
commit 90fcf35c34
20 changed files with 33 additions and 34 deletions

View File

@ -83,7 +83,7 @@ public interface DatabaseManager {
* Convert all users from this database to the provided database using
* {@link #saveUser(PlayerProfile)}.
*
* @param the DatabaseManager to save to
* @param destination The DatabaseManager to save to
*/
public void convertUsers(DatabaseManager destination);
}

View File

@ -33,7 +33,7 @@ public class DatabaseManagerFactory {
* stable. This method is subject to change and/or removal in future
* versions.
*
* @param man the DatabaseManager class to use
* @param clazz the DatabaseManager class to use
* @throws IllegalArgumentException if the provided class does not have
* an empty constructor
*/

View File

@ -912,7 +912,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
/**
* Get the Integer. Only return first row / first field.
*
* @param sql SQL query to execute
* @param statement SQL query to execute
* @return the value in the first row / first field
*/
private int readInt(PreparedStatement statement) {