Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jid3/files/
Date: Mon, 14 Aug 2017 21:51:09
Message-Id: 1502747445.0332ad1c200af15120599af471f88f1ab82e2aa9.monsieurp@gentoo
1 commit: 0332ad1c200af15120599af471f88f1ab82e2aa9
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Aug 14 08:37:18 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 14 21:50:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0332ad1c
7
8 dev-java/jid3: remove unused patch.
9
10 dev-java/jid3/files/0.46-tests.patch | 21 ---------------------
11 1 file changed, 21 deletions(-)
12
13 diff --git a/dev-java/jid3/files/0.46-tests.patch b/dev-java/jid3/files/0.46-tests.patch
14 deleted file mode 100644
15 index 7c557a6a852..00000000000
16 --- a/dev-java/jid3/files/0.46-tests.patch
17 +++ /dev/null
18 @@ -1,21 +0,0 @@
19 -diff -ur src.old/org/blinkenlights/jid3/test/ID3V2Test.java src/org/blinkenlights/jid3/test/ID3V2Test.java
20 ---- src.old/org/blinkenlights/jid3/test/ID3V2Test.java 2007-05-05 14:15:53.000000000 +0300
21 -+++ src/org/blinkenlights/jid3/test/ID3V2Test.java 2007-05-05 14:17:02.000000000 +0300
22 -@@ -2612,7 +2612,7 @@
23 - throws Exception
24 - {
25 - File[] aoMP3File = getMP3FileList(oDirectory);
26 -- for (int i=0; i < aoMP3File.length; i++)
27 -+ for (int i=0; aoMP3File != null && i < aoMP3File.length; i++)
28 - {
29 - // mp3 file to read
30 - MP3File oMP3File = new MP3File(aoMP3File[i]);
31 -@@ -2626,7 +2626,7 @@
32 - }
33 - }
34 - File[] aoDirectory = getSubDirectories(oDirectory);
35 -- for (int i=0; i < aoDirectory.length; i++)
36 -+ for (int i=0; aoDirectory != null && i < aoDirectory.length; i++)
37 - {
38 - // subdirectory to recurse into
39 - System.out.println("Recursing into subdirectory: " + aoDirectory[i].getAbsolutePath());