提交 9850bca0 authored 作者: noelgrandin@gmail.com's avatar noelgrandin@gmail.com

clean up some eclipse javadoc warnings

上级 ca13091b
...@@ -472,7 +472,7 @@ public class PageBtreeNode extends PageBtree { ...@@ -472,7 +472,7 @@ public class PageBtreeNode extends PageBtree {
* Set the cursor to the first row of the next page. * Set the cursor to the first row of the next page.
* *
* @param cursor the cursor * @param cursor the cursor
* @param ROW the current row * @param pageId id of the next page
*/ */
void nextPage(PageBtreeCursor cursor, int pageId) { void nextPage(PageBtreeCursor cursor, int pageId) {
int i; int i;
...@@ -501,7 +501,7 @@ public class PageBtreeNode extends PageBtree { ...@@ -501,7 +501,7 @@ public class PageBtreeNode extends PageBtree {
* Set the cursor to the last row of the previous page. * Set the cursor to the last row of the previous page.
* *
* @param cursor the cursor * @param cursor the cursor
* @param ROW the current row * @param pageId id of the previous page
*/ */
void previousPage(PageBtreeCursor cursor, int pageId) { void previousPage(PageBtreeCursor cursor, int pageId) {
int i; int i;
......
...@@ -203,7 +203,7 @@ public class Data { ...@@ -203,7 +203,7 @@ public class Data {
* For performance reasons the internal representation of a String is * For performance reasons the internal representation of a String is
* similar to UTF-8, but not exactly UTF-8. * similar to UTF-8, but not exactly UTF-8.
* *
* @param len * @param len the length of the resulting string
* @return the String * @return the String
*/ */
private String readString(int len) { private String readString(int len) {
......
...@@ -95,7 +95,6 @@ public class Backup extends Tool { ...@@ -95,7 +95,6 @@ public class Backup extends Tool {
* @param db the source database name (null if there is only one database, and * @param db the source database name (null if there is only one database, and
* and empty string to backup all files in this directory) * and empty string to backup all files in this directory)
* @param quiet don't print progress information * @param quiet don't print progress information
* @throws SQLException
*/ */
public static void execute(String zipFileName, String directory, String db, boolean quiet) throws SQLException { public static void execute(String zipFileName, String directory, String db, boolean quiet) throws SQLException {
try { try {
......
...@@ -58,8 +58,6 @@ public class TestAutoServer extends TestBase { ...@@ -58,8 +58,6 @@ public class TestAutoServer extends TestBase {
/** /**
* Tests basic AUTO_SERVER functionality * Tests basic AUTO_SERVER functionality
*
* @throws Exception
*/ */
private void testAutoServer() throws Exception { private void testAutoServer() throws Exception {
if (config.memory || config.networked) { if (config.memory || config.networked) {
......
...@@ -54,7 +54,6 @@ abstract class TestMultiThread extends Thread { ...@@ -54,7 +54,6 @@ abstract class TestMultiThread extends Thread {
/** /**
* This method is called once after all threads have been stopped. * This method is called once after all threads have been stopped.
* @throws SQLException
*/ */
abstract void finalTest() throws SQLException; abstract void finalTest() throws SQLException;
......
...@@ -469,8 +469,6 @@ public class TestFileLockSerialized extends TestBase { ...@@ -469,8 +469,6 @@ public class TestFileLockSerialized extends TestBase {
* *
* Also, if a checkpoint started before beforeWriting, and ends between * Also, if a checkpoint started before beforeWriting, and ends between
* between beforeWriting and checkWritingAllowed, then the same error occurs. * between beforeWriting and checkWritingAllowed, then the same error occurs.
*
* @throws Exception
*/ */
private void testCheckpointInUpdateRaceCondition() throws Exception { private void testCheckpointInUpdateRaceCondition() throws Exception {
boolean longRun = false; boolean longRun = false;
......
...@@ -79,7 +79,7 @@ public class ProxyCodeGenerator { ...@@ -79,7 +79,7 @@ public class ProxyCodeGenerator {
* Generate a class that implements all static methods of the given class, * Generate a class that implements all static methods of the given class,
* but as non-static. * but as non-static.
* *
* @param c the class to extend * @param clazz the class to extend
*/ */
void generateStaticProxy(Class<?> clazz) { void generateStaticProxy(Class<?> clazz) {
imports.clear(); imports.clear();
......
...@@ -113,7 +113,7 @@ public class ModelUtils { ...@@ -113,7 +113,7 @@ public class ModelUtils {
* *
* @param fieldDef the field to map * @param fieldDef the field to map
* @param strictTypeMapping throws a RuntimeException if type is unsupported * @param strictTypeMapping throws a RuntimeException if type is unsupported
* @return * @return SQL type
*/ */
static String getDataType(FieldDefinition fieldDef, boolean strictTypeMapping) { static String getDataType(FieldDefinition fieldDef, boolean strictTypeMapping) {
Class<?> fieldClass = fieldDef.field.getType(); Class<?> fieldClass = fieldDef.field.getType();
...@@ -134,10 +134,10 @@ public class ModelUtils { ...@@ -134,10 +134,10 @@ public class ModelUtils {
/** /**
* Returns the Java class for a given SQL type. * Returns the Java class for a given SQL type.
* *
* @param sqlType * @param sqlType the SQL type
* @param dateTimeClass the preferred date class (java.util.Date or * @param dateTimeClass the preferred date class (java.util.Date or
* java.sql.Timestamp) * java.sql.Timestamp)
* @return * @return Class of type
*/ */
static Class<?> getClassForSqlType(String sqlType, static Class<?> getClassForSqlType(String sqlType,
Class<? extends java.util.Date> dateTimeClass) { Class<? extends java.util.Date> dateTimeClass) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论