summaryrefslogtreecommitdiffstats
path: root/lib/blink.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/blink.rb')
-rw-r--r--lib/blink.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/blink.rb b/lib/blink.rb
index 74c03f2de..274e37550 100644
--- a/lib/blink.rb
+++ b/lib/blink.rb
@@ -120,25 +120,6 @@ module Blink
@@config[param] = value
end
- # a simple class for creating callbacks
- class Event
- attr_reader :event, :object
- attr_writer :event, :object
-
- def initialize(args)
- @event = args[:event]
- @object = args[:object]
-
- if @event.nil? or @object.nil?
- raise "Event.new called incorrectly"
- end
- end
-
- def trigger
- @object.trigger(@event)
- end
- end
-
# a class for storing state
# not currently used
class Storage