datahelix
datahelix copied to clipboard
'Object' parameters and return types should almost always be generic types
Instances are passed around as an Object frequently. This should be avoided as much as possible, with more specific typing used. This gives us compile-time safety about our classes, instead of potential run-time errors.
Resolved by #1460