mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - Code cleanup,remove unnecessary comma
This commit is contained in:
@@ -46,5 +46,5 @@ public enum TxType {
|
||||
* If there is an existing transaction throws an Exception. Method runs
|
||||
* without a transaction.
|
||||
*/
|
||||
NEVER;
|
||||
NEVER
|
||||
}
|
||||
|
||||
@@ -26,6 +26,6 @@ public enum IdType {
|
||||
* id properties of type UUID.
|
||||
* </p>
|
||||
*/
|
||||
GENERATOR;
|
||||
GENERATOR
|
||||
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ public final class PersistRequestUpdateSql extends PersistRequest {
|
||||
|
||||
public enum SqlType {
|
||||
SQL_UPDATE, SQL_DELETE, SQL_INSERT, SQL_UNKNOWN
|
||||
};
|
||||
}
|
||||
|
||||
private final SpiSqlUpdate updateSql;
|
||||
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ import com.avaje.ebeaninternal.server.deploy.meta.DeployBeanProperty;
|
||||
*/
|
||||
public class GeneratedPropertyFactory {
|
||||
|
||||
private final CounterFactory counterFactory = new CounterFactory();;
|
||||
private final CounterFactory counterFactory = new CounterFactory();
|
||||
|
||||
private final InsertTimestampFactory insertFactory = new InsertTimestampFactory();
|
||||
|
||||
|
||||
@@ -75,5 +75,5 @@ public final class DaemonScheduleThreadPool extends ScheduledThreadPoolExecutor
|
||||
public void run() {
|
||||
shutdown();
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -82,5 +82,5 @@ public final class DaemonThreadPool extends ThreadPoolExecutor {
|
||||
public void run() {
|
||||
shutdown();
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,4 +19,4 @@ class ShutdownHook extends Thread {
|
||||
ShutdownManager.shutdown();
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -37,4 +37,4 @@ public class MimeTypeHelper {
|
||||
private static ResourceBundle resources = ResourceBundle.getBundle("com.avaje.lib.util.mimetypes");
|
||||
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ package com.avaje.ebeaninternal.server.lib.util;
|
||||
*/
|
||||
public class StringParsingException extends RuntimeException {
|
||||
|
||||
static final long serialVersionUID = -3070423471260426402L;
|
||||
|
||||
public StringParsingException(String message) {
|
||||
super(message);
|
||||
}
|
||||
};
|
||||
static final long serialVersionUID = -3070423471260426402L;
|
||||
|
||||
public StringParsingException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user