Alternative to default package with Java 9 and higher

206 Views Asked by At

I have an application which calls a third party dll. The dll is written so that the calls to it include the fully qualified name of the class doing the calling. This module has worked for a number of years using versions of Java earlier than Java 9. But because of Oracles new restrictions on putting classes in the default package, it no longer works with more recent versions of Java.

How do I get around this problem?

0

There are 0 best solutions below