jankrause / idocit

Automatically exported from code.google.com/p/idocit
0 stars 0 forks source link

iDocIt! could not load its generated Javadoc with Generics #85

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create a new Java class and add the following code to it.
{{{
public static <T> Set<T> intersect(final Set<T> a, final Set<T> b) {
        final Set<T> result = new HashSet<T>();

        for (final T o : a) {
            if (a.contains(o) && b.contains(o)) {
                result.add(o);
            }
        }

        return result;
    }
}}}

2. Document the resulting set and save it.
3. Reopen iDocIt! and view the documentation of the set.

What is the expected output? What do you see instead?
I expect my documentation, but iDocIt! does not show it.

Please note: there is a declaration of the type T before the set. Maybe this 
causes the bug.

Please use labels and text to provide additional information.

Original issue reported on code.google.com by krauseda...@web.de on 18 Nov 2011 at 1:37

GoogleCodeExporter commented 8 years ago

Original comment by dirk.mei...@gmail.com on 4 Apr 2012 at 10:42

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r578.

Original comment by dirk.mei...@gmail.com on 5 Apr 2012 at 7:45