summaryrefslogtreecommitdiff
path: root/src/imgreplacer.clj
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2010-09-11 18:27:03 -0400
committerScott Ostler <scottbot9000@gmail.com>2010-09-11 18:27:03 -0400
commita004d9f734a1c374dae017cf7f2178933455ab5e (patch)
treed486821a16297f3e5cf00e34d8416b5c757a1aa9 /src/imgreplacer.clj
parentddd36e7b2088a29ddfcb256f37fe0726fa9547cb (diff)
removed println from imgreplacer
Diffstat (limited to 'src/imgreplacer.clj')
-rw-r--r--src/imgreplacer.clj1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/imgreplacer.clj b/src/imgreplacer.clj
index 6f763e7..bc9b00f 100644
--- a/src/imgreplacer.clj
+++ b/src/imgreplacer.clj
@@ -38,7 +38,6 @@
fname (last (.split url "/"))
file (File. (file-path date fname))
img (ImageIO/read (ByteArrayInputStream. bytes))]
- (println img)
(make-parents file)
(copy (ByteArrayInputStream. bytes) file)
(image-url date fname)))