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
Original issue reported on code.google.com by
krauseda...@web.de
on 18 Nov 2011 at 1:37