Remove unused task

This commit is contained in:
Kevin Sawicki
2013-06-13 17:12:43 -07:00
committed by probablycorey
parent b42cc6f683
commit 12b5c43d85

View File

@@ -1,13 +0,0 @@
Task = require 'task'
module.exports =
class SpellCheckTask extends Task
constructor: (@text, @callback) ->
super('spell-check/lib/spell-check-handler')
started: ->
@callWorkerMethod('findMisspellings', @text)
misspellingsFound: (misspellings) ->
@done()
@callback(misspellings)