You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a List input of a type that is not a number, like List<File>, the Input.setStringValue method just gives up and returns. It should call the String constructor of the list type (new File(String) in this example) instead.
There is code at the end of the method that does this, but it is never reached because when testing the input type being a List it returns earlier.
The text was updated successfully, but these errors were encountered:
For a
List
input of a type that is not a number, likeList<File>
, theInput.setStringValue
method just gives up and returns. It should call theString
constructor of the list type (new File(String)
in this example) instead.There is code at the end of the method that does this, but it is never reached because when testing the input type being a
List
it returns earlier.The text was updated successfully, but these errors were encountered: