I have this line of code
Class c1 = Class.forName(BASE_PACKAGE_NAME + "." + appId + ".v" + version.replace(",", "") + NAME);
but I have the compilation Warning:
Raw use of parameterized class
I have this line of code
Class c1 = Class.forName(BASE_PACKAGE_NAME + "." + appId + ".v" + version.replace(",", "") + NAME);
but I have the compilation Warning:
Raw use of parameterized class
You need to specify the generic type. You can use:
Class<?> c1 = Class.forName(...
to silence the warning.