remove old commas
This commit is contained in:
parent
c3f158fac7
commit
915e48ead1
3 changed files with 10 additions and 10 deletions
|
|
@ -50,8 +50,8 @@ class SimpleService extends Actor {
|
|||
makeTransactionRequired
|
||||
|
||||
case object Tick
|
||||
private val KEY = "COUNTER";
|
||||
private var hasStartedTicking = false;
|
||||
private val KEY = "COUNTER"
|
||||
private var hasStartedTicking = false
|
||||
private val storage = TransactionalState.newMap[String, Integer]
|
||||
|
||||
@GET
|
||||
|
|
@ -83,8 +83,8 @@ class PersistentSimpleService extends Actor {
|
|||
makeTransactionRequired
|
||||
|
||||
case object Tick
|
||||
private val KEY = "COUNTER";
|
||||
private var hasStartedTicking = false;
|
||||
private val KEY = "COUNTER"
|
||||
private var hasStartedTicking = false
|
||||
private val storage = PersistentState.newMap(CassandraStorageConfig())
|
||||
|
||||
@GET
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue