Skip to content

Commit 6b8da95

Browse files
committed
give warning message about the type cast
1 parent b76ed8e commit 6b8da95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R#/Runtime/Internal/objects/dataset/pipeline.vb

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ Namespace Runtime.Internal.Object
308308
ElseIf GetType(T).IsInterface AndAlso DirectCast(upstream, pipeline).elementType.raw.ImplementInterface(Of T) Then
309309
Return upstream
310310
ElseIf DirectCast(upstream, pipeline).elementType Is RType.any Then
311-
Call "the given upstream pipeline is a stream of generic object collection".Warning
311+
Call "the given upstream pipeline is a stream of generic object collection. some type cast maybe failure!".Warning
312312
Return upstream
313313
Else
314314
Return Message.InCompatibleType(GetType(T), DirectCast(upstream, pipeline).elementType.raw, env,

0 commit comments

Comments
 (0)