Skip to content

Commit

Permalink
minor comment add
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 27, 2024
1 parent 0611a67 commit 59d2d1a
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1637,7 +1637,13 @@ protected JavaType _fromWellKnownClass(ClassStack context, Class<?> rawType, Typ
// detected, related to difficulties in propagating type upwards (Iterable, for
// example, is a weak, tag-on type). They may be detectable in future.
// 23-May-2023, tatu: As of 2.16 we do, however, recognized certain `IterationType`s.
if (rawType == Iterator.class || rawType == Stream.class) {
if (rawType == Iterator.class || rawType == Stream.class
// 27-Apr-2024, tatu: Tried to do [databind#4443] for 2.18 but that caused
// regression so cannot add "Iterable.class" without figuring out issue
// with HPPC `ObjectArrayList`s type hierarchy first
//
// || rawType == Iterable.class
) {
return _iterationType(rawType, bindings, superClass, superInterfaces);
}
if (BaseStream.class.isAssignableFrom(rawType)) {
Expand Down

0 comments on commit 59d2d1a

Please sign in to comment.