No effective change - Code cleanup,remove unnecessary comma

This commit is contained in:
Robin Bygrave
2015-07-31 13:18:26 +12:00
parent 6843c72149
commit 49b97887b0
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -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;
@@ -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);
}
}