commit | ff38656b1c0682e1449f5a34f183ee0e25b19321 | [log] [tgz] |
---|---|---|
author | Guillaume Nodet <gnodet@apache.org> | Mon Apr 26 09:25:19 2010 +0000 |
committer | Guillaume Nodet <gnodet@apache.org> | Mon Apr 26 09:25:19 2010 +0000 |
tree | dbc32e622cce4021d6f9b2ddeeff532f574fcd4e | |
parent | 6b4a6c4e0d319614abec6f1b177e7f2aeae646e4 [diff] |
[bundlerepository] fix a NPE in the index goal git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@937978 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java b/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java index 5ca6afa..cfa77f5 100644 --- a/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java +++ b/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java
@@ -97,7 +97,7 @@ log.info("URL template: " + urlTemplate); List<File> files = new ArrayList<File>(); - findAllJars( new File(mavenRepository), files ); + findAllJars( new File(repo), files ); DataModelHelperImpl dmh = new DataModelHelperImpl(); RepositoryImpl repository;