Skip to content

Commit

Permalink
Remove redundant ()
Browse files Browse the repository at this point in the history
  • Loading branch information
tombell committed Jan 11, 2013
1 parent a39ea13 commit fac0123
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/brain.coffee
Expand Up @@ -5,10 +5,8 @@ class Brain extends EventEmitter
# Represents somewhat persistent storage for the robot. Extend this.
#
# Returns a new Brain with no external storage.
constructor: () ->
@data =
users: { }

constructor: ->
@data = users: { }
@resetSaveInterval 5

# Public: Emits the 'save' event so that 'brain' scripts can handle persisting.
Expand Down

0 comments on commit fac0123

Please sign in to comment.