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
Sometimes if you forget to add a dependency to autowire's parameters which needs manual creation you get errors such as a missing String dependency (if a String is needed to create said instance).
Maybe we should short-circuit even earlier, that is report an error any time someone tries to create an instance parametrised by any type from scala.*. Maybe the blacklist should also include java.lang.*, java.util.* and the like. What do you think?
The text was updated successfully, but these errors were encountered:
Sometimes if you forget to add a dependency to autowire's parameters which needs manual creation you get errors such as a missing
String
dependency (if aString
is needed to create said instance).Maybe we should short-circuit even earlier, that is report an error any time someone tries to create an instance parametrised by any type from
scala.*
. Maybe the blacklist should also includejava.lang.*
,java.util.*
and the like. What do you think?The text was updated successfully, but these errors were encountered: