From 8885a339ee016d31abf7064d5e86e62fda55c028 Mon Sep 17 00:00:00 2001 From: "stephen@sfnelson.org" Date: Thu, 18 Dec 2008 00:44:22 +0000 Subject: [PATCH] Updated project dependencies git-svn-id: https://stereo.googlecode.com/svn/trunk@381 c67ee986-0855-0410-825f-15918b819f62 --- MemphisDJ/ivy.xml | 7 ++++++- MemphisDJ/test/player/PlayerTest.java | 5 ++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/MemphisDJ/ivy.xml b/MemphisDJ/ivy.xml index 851fea2..2aabce9 100644 --- a/MemphisDJ/ivy.xml +++ b/MemphisDJ/ivy.xml @@ -3,6 +3,11 @@ - + + + + + + diff --git a/MemphisDJ/test/player/PlayerTest.java b/MemphisDJ/test/player/PlayerTest.java index 1116f12..42d1a51 100644 --- a/MemphisDJ/test/player/PlayerTest.java +++ b/MemphisDJ/test/player/PlayerTest.java @@ -1,6 +1,5 @@ package player; -import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; @@ -13,8 +12,8 @@ public class PlayerTest { public static void main(String args[]) throws Exception { - InputStream in1 = new BufferedInputStream(PlayerTest.class.getResourceAsStream("music.ogg")); - InputStream in2 = PlayerTest.class.getResourceAsStream("music.mp3"); + InputStream in1 = PlayerTest.class.getResourceAsStream("music.mp3"); + InputStream in2 = PlayerTest.class.getResourceAsStream("music.oggO"); //new AudioPlayer(in1).play(); -- 2.11.4.GIT