why doesn't Java have "deep" wildcard import?

Viewed 301

Why doesn't import one.two.* include import one.two.three.MyClass? Shouldn't Java have something like import one.two.**? Or is there any reason (other than they just didn't do, not that they couldn't do it)?

Thanks

2 Answers
Related