I try to make a java app using Jsoup.
Instead of using
(A)
import org.jsoup.Jsoup; import org.jsoup.helper.Validate; import org.jsoup.helper.Validate; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; I want to use
(B)
import org.jsoup.*; (A) is working but (B) is not...
I am using IntelliJ and imported the dependencies... Why is this not working ?