Changes to list instantiation
In 9.0, Guidewire made
the following changes to the List
type in Gosu:
- The type
List(with no package) is no longer a type alias forjava.util.List. See Number, DateTime, Bean, List Types removed. - In
newexpressions, you cannot use the interface typeListorjava.util.Listto instantiate a list as a shortcut to create an instance ofjava.util.ArrayList. If you get related compilation errors in new expressions, change yournewexpression to explicitly create an instance ofArrayListinstead.
