Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco committed Oct 1, 2023
1 parent 487e001 commit 6bebfcd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>tech.ailef</groupId>
<artifactId>spring-boot-db-admin</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.3</version>
<name>spring-boot-db-admin</name>
<description>Srping Boot Database Admin is an auto-generated CRUD admin panel for Spring Boot apps</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
import tech.ailef.dbadmin.external.annotations.Filterable;
import tech.ailef.dbadmin.external.annotations.FilterableType;

/**
* Represent a field on the database, generated from an Entity class instance variable.
*/
public class DbField {
/**
* The inferred name of this field on the database
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import tech.ailef.dbadmin.external.exceptions.DbAdminException;

/**
* The list of supported field types
* The enum for supported database field types.
*/
public enum DbFieldType {
INTEGER {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ public void setSortKey(String sortKey) {

/**
* Returns the requested sort order, possibly null
* @param sortOrder
*/

public String getSortOrder() {
Expand Down

0 comments on commit 6bebfcd

Please sign in to comment.