java snippet node import collision with system imports

hi all,

i’m trying to integrate JSoup into a java snippet via an external jar.

however, there seems to be an import collision with the “import org.w3c.dom.Document;” in the “systems import section”, which is default and cannot be removed…

any idea how to work around this one?

H

There’s probably already the DOM Document imported by default.

Solution: Don’t import at all and instead use the fully qualified class name in your code snippet.

1 Like

that worked like a charm, thx!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.