summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-java/jid3/files/0.46-tests.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-java/jid3/files/0.46-tests.patch b/dev-java/jid3/files/0.46-tests.patch
deleted file mode 100644
index 7c557a6a8528..000000000000
--- a/dev-java/jid3/files/0.46-tests.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur src.old/org/blinkenlights/jid3/test/ID3V2Test.java src/org/blinkenlights/jid3/test/ID3V2Test.java
---- src.old/org/blinkenlights/jid3/test/ID3V2Test.java 2007-05-05 14:15:53.000000000 +0300
-+++ src/org/blinkenlights/jid3/test/ID3V2Test.java 2007-05-05 14:17:02.000000000 +0300
-@@ -2612,7 +2612,7 @@
- throws Exception
- {
- File[] aoMP3File = getMP3FileList(oDirectory);
-- for (int i=0; i < aoMP3File.length; i++)
-+ for (int i=0; aoMP3File != null && i < aoMP3File.length; i++)
- {
- // mp3 file to read
- MP3File oMP3File = new MP3File(aoMP3File[i]);
-@@ -2626,7 +2626,7 @@
- }
- }
- File[] aoDirectory = getSubDirectories(oDirectory);
-- for (int i=0; i < aoDirectory.length; i++)
-+ for (int i=0; aoDirectory != null && i < aoDirectory.length; i++)
- {
- // subdirectory to recurse into
- System.out.println("Recursing into subdirectory: " + aoDirectory[i].getAbsolutePath());