mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Refactor TableModState to use nanoTime refactor (#1720)
* #1719 - Refactor TableModState to use nanoTime * Tests only - reduce logging
This commit is contained in:
@@ -15,7 +15,12 @@ public class RemoteTableMod implements BinaryWritable {
|
||||
|
||||
private final Set<String> tables;
|
||||
|
||||
public RemoteTableMod(long timestamp, Set<String> tables) {
|
||||
public RemoteTableMod(Set<String> tables) {
|
||||
this.tables = tables;
|
||||
this.timestamp = System.currentTimeMillis();
|
||||
}
|
||||
|
||||
private RemoteTableMod(long timestamp, Set<String> tables) {
|
||||
this.timestamp = timestamp;
|
||||
this.tables = tables;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user