diff options
author | Eduardo Julian | 2017-02-22 17:53:11 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-02-22 17:53:11 -0400 |
commit | 03a41265b2619257be45fddac691cb5bc18765a7 (patch) | |
tree | 1c0138af4bde9553af594b4f05799e7a38b79ba8 | |
parent | efe1e3a69663b06daeb6ba63d3d823500417b73f (diff) |
- No longer (uselessly) loading classes right after they get saved.
Diffstat (limited to '')
-rw-r--r-- | luxc/src/lux/compiler/jvm/base.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/luxc/src/lux/compiler/jvm/base.clj b/luxc/src/lux/compiler/jvm/base.clj index 268b293e9..99e0f08e9 100644 --- a/luxc/src/lux/compiler/jvm/base.clj +++ b/luxc/src/lux/compiler/jvm/base.clj @@ -52,7 +52,6 @@ ;; [Exports] (defn ^Class load-class! [^ClassLoader loader name] - ;; (prn 'load-class! name) (.loadClass loader name)) (defn save-class! [name bytecode] @@ -64,7 +63,8 @@ _ (swap! !classes assoc real-name bytecode) _ (when (not eval?) (write-output module name bytecode)) - _ (load-class! loader real-name)]] + ;; _ (load-class! loader real-name) + ]] (return nil))) (do-template [<wrap-name> <unwrap-name> <class> <unwrap-method> <prim> <dup>] |