Skip to content

Commit 7ff6787

Browse files
committed
Remove references to localStorage
1 parent 31253d6 commit 7ff6787

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class App
1111
round = new Round(Config.getRoundDuration())
1212
pokerClock = new PokerClock(round, Config.getAvailableBlinds(), Config.getEnabledBlinds())
1313
gui = new Gui()
14-
glue = new Glue(pokerClock, gui, localStorage, clock)
14+
glue = new Glue(pokerClock, gui, clock)
1515

1616
pokerClock.setup()
1717

src/glue.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Glue
2-
constructor: (@pokerClock, @gui, @storage, @clock)->
2+
constructor: (@pokerClock, @gui, @clock)->
33
LogAll(@pokerClock)
44
LogAll(@gui)
55

0 commit comments

Comments
 (0)