Skip to content

Commit

Permalink
Adding missing define and imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
rosejn committed Mar 10, 2010
1 parent f41a222 commit ea3863a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/midi.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
(javax.swing JFrame JScrollPane JList
DefaultListModel ListSelectionModel)
(java.awt.event MouseAdapter)
(java.util.concurrent FutureTask))
(java.util.concurrent FutureTask ScheduledThreadPoolExecutor TimeUnit))
(:use clojure.set))

(def NUM-PLAYER-THREADS 10)
(def *midi-player-pool* (ScheduledThreadPoolExecutor. NUM-PLAYER-THREADS))

(defn- now []
Expand Down

1 comment on commit ea3863a

@mozinator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you also push this to clojars ?

Please sign in to comment.