Remove duplicate constructor

This commit is contained in:
Kevin Sawicki
2013-09-18 09:47:17 -07:00
parent 00373cd386
commit a06012cf2e

View File

@@ -40,9 +40,6 @@ class Project
ignoredPathRegexes: null
openers: null
constructor: ->
@openers = []
# Public:
registerOpener: (opener) -> @openers.push(opener)
@@ -65,6 +62,7 @@ class Project
#
# path - The {String} name of the path
constructor: (pathOrState) ->
@openers = []
@editSessions = []
@buffers = []