Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
timmolter committed Apr 19, 2024
1 parent ab8748e commit 19f22b6
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 12 deletions.
4 changes: 3 additions & 1 deletion src/main/java/org/knowm/yank/YankPoolManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ protected void addSQLStatements(Properties sqlProperties) {
this.mergedSqlProperties.putAll(sqlProperties);
}

/** @return the mergedSqlProperties */
/**
* @return the mergedSqlProperties
*/
protected Properties getMergedSqlProperties() {

return mergedSqlProperties;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
import org.knowm.yank.demo.Book;
import org.knowm.yank.demo.BooksDAO;

/** @author timmolter */
/**
* @author timmolter
*/
public class BooksTableDataSourceClassNameTest {

@BeforeClass
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/org/knowm/yank/BooksTableJdbcUrlTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
import org.knowm.yank.demo.Book;
import org.knowm.yank.demo.BooksDAO;

/** @author timmolter */
/**
* @author timmolter
*/
public class BooksTableJdbcUrlTest {

@BeforeClass
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/org/knowm/yank/ColumnMappingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
import org.junit.Test;
import org.knowm.yank.annotations.Column;

/** @author timmolter */
/**
* @author timmolter
*/
public class ColumnMappingTest {

@BeforeClass
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/org/knowm/yank/GenericObjectTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
import org.junit.Test;
import org.knowm.yank.demo.Book;

/** @author timmolter */
/**
* @author timmolter
*/
public class GenericObjectTest {

@BeforeClass
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/org/knowm/yank/PropertiesUtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
import org.junit.Test;
import org.knowm.yank.exceptions.PropertiesFileNotFoundException;

/** @author timmolter */
/**
* @author timmolter
*/
public class PropertiesUtilsTest {

@Test
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/org/knowm/yank/QueryColumnTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
import org.junit.Test;
import org.knowm.yank.annotations.Column;

/** @author timmolter */
/**
* @author timmolter
*/
public class QueryColumnTest {

@BeforeClass
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/org/knowm/yank/SnakeCaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
import org.junit.Test;
import org.knowm.yank.demo.Book;

/** @author timmolter */
/**
* @author timmolter
*/
public class SnakeCaseTest {

@BeforeClass
Expand Down
12 changes: 9 additions & 3 deletions src/test/java/org/knowm/yank/SnakeCaseTest2.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
import org.junit.BeforeClass;
import org.junit.Test;

/** @author timmolter */
/**
* @author timmolter
*/
public class SnakeCaseTest2 {

@BeforeClass
Expand Down Expand Up @@ -50,12 +52,16 @@ public static class Test0Bean {

private long spotfix_id;

/** @return the spotfix_id */
/**
* @return the spotfix_id
*/
public long getSpotfix_id() {
return spotfix_id;
}

/** @param spotfix_id the spotfix_id to set */
/**
* @param spotfix_id the spotfix_id to set
*/
public void setSpotfix_id(long spotfix_id) {
this.spotfix_id = spotfix_id;
}
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/org/knowm/yank/YankSQLExceptionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
import org.knowm.yank.demo.Book;
import org.knowm.yank.exceptions.YankSQLException;

/** @author timmolter */
/**
* @author timmolter
*/
public class YankSQLExceptionTest {

@BeforeClass
Expand Down

0 comments on commit 19f22b6

Please sign in to comment.