You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Richard S. Hall (JIRA)" <ji...@apache.org> on 2011/05/11 19:41:47 UTC

[jira] [Updated] (FELIX-2935) Bundle.getEntryPaths and findEntries are returning META-INF/ multiple times

     [ https://issues.apache.org/jira/browse/FELIX-2935?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard S. Hall updated FELIX-2935:
-----------------------------------

    Fix Version/s:     (was: framework-4.0.0)
                   framework-3.2.2

> Bundle.getEntryPaths and findEntries are returning META-INF/ multiple times
> ---------------------------------------------------------------------------
>
>                 Key: FELIX-2935
>                 URL: https://issues.apache.org/jira/browse/FELIX-2935
>             Project: Felix
>          Issue Type: Bug
>          Components: Framework
>    Affects Versions: framework-3.0.8
>            Reporter: Sahoo
>            Assignee: Richard S. Hall
>             Fix For: framework-3.2.2
>
>         Attachments: FELIX-2935.zip
>
>
> Bundle.getEntryPaths("/") and Bundle.findEntries("/", "*", true) return META-INF/ twice. There is no fragment attached, so there is no reason for findEntries to return twice.
> My code looks like this:
>     void printEntryPaths(Bundle b, String s) {
>         Enumeration e = b.getEntryPaths(s);
>         if (e!=null) {
>             while (e.hasMoreElements()) {
>                 String next = (String)e.nextElement();
>                 System.out.println(next);
>                 printEntryPaths(b, next);
>             }
>         }
>     }
>     void printEntryPaths2(Bundle b, String s) {
>         Enumeration e = b.findEntries(s, "*", true);
>         if (e != null) {
>             while (e.hasMoreElements()) {
>                 URL next = (URL)e.nextElement();
>                 System.out.println(next.getPath());
>             }
>         }
>     }
> This seems to be a regression.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira