DATACMNS-1430 - Tweaked TypeDiscoverer to consider subtypes of Streamable collection like.

This commit is contained in:
Oliver Drotbohm
2018-12-04 15:43:54 +01:00
parent 549940456b
commit 75c9ab0a63
2 changed files with 3 additions and 3 deletions

View File

@@ -360,7 +360,7 @@ class TypeDiscoverer<S> implements TypeInformation<S> {
return rawType.isArray() //
|| Iterable.class.equals(rawType) //
|| Collection.class.isAssignableFrom(rawType) //
|| Streamable.class.equals(rawType);
|| Streamable.class.isAssignableFrom(rawType);
}
/*