Fix some invalid/incomplete javadoc comments

This commit is contained in:
jvoisin
2019-06-15 17:15:51 +02:00
parent 7a769d57cf
commit 1640411573
8 changed files with 8 additions and 43 deletions
@@ -48,9 +48,7 @@ public class TestCaseUtils {
/**
* Cleans the AIRSONIC_HOME directory used for tests.
*
* @throws IOException
*/
*/
public static void cleanAirsonicHomeForTest() throws IOException {
File airsonicHomeDir = new File(airsonicHomePathForTest());
@@ -86,11 +84,7 @@ public class TestCaseUtils {
/**
* Counts records in a table.
*
* @param tableName
* @param daoHelper
* @return
*/
*/
public static Integer recordsInTable(String tableName, DaoHelper daoHelper) {
return daoHelper.getJdbcTemplate().queryForObject("select count(1) from " + tableName,Integer.class);
}
@@ -19,9 +19,9 @@
*/
package org.airsonic.player.domain;
/**
* Unit test of {@link Version}.
* @author Sindre Mehus
/*
Unit test of {@link Version}.
@author Sindre Mehus
*/
import junit.framework.TestCase;