[HER-1814] remove dependency on apache commons-pool/GenericObjectPool

* SelfTestBase.java
    don't try to UURIify 'fieldesc:' ad-hoc URIs
This commit is contained in:
gojomo
2010-08-26 21:56:50 +00:00
parent 790469280e
commit 2f78980e5d
@@ -354,6 +354,10 @@ public abstract class SelfTestBase extends TmpDirTestCase {
List<ArchiveRecordHeader> headers = headersInArcs();
HashSet<String> result = new HashSet<String>();
for (ArchiveRecordHeader arh: headers) {
// ignore 'filedesc:' record
if(arh.getUrl().startsWith("filedesc:")) {
continue;
}
UURI uuri = UURIFactory.getInstance(arh.getUrl());
String path = uuri.getPath();
if (path.startsWith("/")) {