Skip to content

Commit 19f22b6

Browse files
committed
code format
1 parent ab8748e commit 19f22b6

File tree

10 files changed

+36
-12
lines changed

10 files changed

+36
-12
lines changed

src/main/java/org/knowm/yank/YankPoolManager.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ protected void addSQLStatements(Properties sqlProperties) {
145145
this.mergedSqlProperties.putAll(sqlProperties);
146146
}
147147

148-
/** @return the mergedSqlProperties */
148+
/**
149+
* @return the mergedSqlProperties
150+
*/
149151
protected Properties getMergedSqlProperties() {
150152

151153
return mergedSqlProperties;

src/test/java/org/knowm/yank/BooksTableDataSourceClassNameTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
import org.knowm.yank.demo.Book;
1313
import org.knowm.yank.demo.BooksDAO;
1414

15-
/** @author timmolter */
15+
/**
16+
* @author timmolter
17+
*/
1618
public class BooksTableDataSourceClassNameTest {
1719

1820
@BeforeClass

src/test/java/org/knowm/yank/BooksTableJdbcUrlTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
import org.knowm.yank.demo.Book;
1212
import org.knowm.yank.demo.BooksDAO;
1313

14-
/** @author timmolter */
14+
/**
15+
* @author timmolter
16+
*/
1517
public class BooksTableJdbcUrlTest {
1618

1719
@BeforeClass

src/test/java/org/knowm/yank/ColumnMappingTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
import org.junit.Test;
1010
import org.knowm.yank.annotations.Column;
1111

12-
/** @author timmolter */
12+
/**
13+
* @author timmolter
14+
*/
1315
public class ColumnMappingTest {
1416

1517
@BeforeClass

src/test/java/org/knowm/yank/GenericObjectTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
import org.junit.Test;
1313
import org.knowm.yank.demo.Book;
1414

15-
/** @author timmolter */
15+
/**
16+
* @author timmolter
17+
*/
1618
public class GenericObjectTest {
1719

1820
@BeforeClass

src/test/java/org/knowm/yank/PropertiesUtilsTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
import org.junit.Test;
99
import org.knowm.yank.exceptions.PropertiesFileNotFoundException;
1010

11-
/** @author timmolter */
11+
/**
12+
* @author timmolter
13+
*/
1214
public class PropertiesUtilsTest {
1315

1416
@Test

src/test/java/org/knowm/yank/QueryColumnTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
import org.junit.Test;
1111
import org.knowm.yank.annotations.Column;
1212

13-
/** @author timmolter */
13+
/**
14+
* @author timmolter
15+
*/
1416
public class QueryColumnTest {
1517

1618
@BeforeClass

src/test/java/org/knowm/yank/SnakeCaseTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
import org.junit.Test;
77
import org.knowm.yank.demo.Book;
88

9-
/** @author timmolter */
9+
/**
10+
* @author timmolter
11+
*/
1012
public class SnakeCaseTest {
1113

1214
@BeforeClass

src/test/java/org/knowm/yank/SnakeCaseTest2.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
import org.junit.BeforeClass;
1010
import org.junit.Test;
1111

12-
/** @author timmolter */
12+
/**
13+
* @author timmolter
14+
*/
1315
public class SnakeCaseTest2 {
1416

1517
@BeforeClass
@@ -50,12 +52,16 @@ public static class Test0Bean {
5052

5153
private long spotfix_id;
5254

53-
/** @return the spotfix_id */
55+
/**
56+
* @return the spotfix_id
57+
*/
5458
public long getSpotfix_id() {
5559
return spotfix_id;
5660
}
5761

58-
/** @param spotfix_id the spotfix_id to set */
62+
/**
63+
* @param spotfix_id the spotfix_id to set
64+
*/
5965
public void setSpotfix_id(long spotfix_id) {
6066
this.spotfix_id = spotfix_id;
6167
}

src/test/java/org/knowm/yank/YankSQLExceptionTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
import org.knowm.yank.demo.Book;
1313
import org.knowm.yank.exceptions.YankSQLException;
1414

15-
/** @author timmolter */
15+
/**
16+
* @author timmolter
17+
*/
1618
public class YankSQLExceptionTest {
1719

1820
@BeforeClass

0 commit comments

Comments
 (0)