fix(TUP-19605) add another fix for tdm adjuster
This commit is contained in:
@@ -938,9 +938,11 @@ public class ProcessorUtilities {
|
||||
.getNeededLibrariesForProcess(currentProcess, false);
|
||||
if (neededLibraries != null) {
|
||||
Set<ModuleNeeded> adjustClassPath = new HashSet<ModuleNeeded>(neededLibraries);
|
||||
for (IClasspathAdjuster adjuster : classPathAdjusters) {
|
||||
adjuster.collectInfo(currentProcess, neededLibraries);
|
||||
adjustClassPath = adjuster.adjustClassPath(currentProcess, adjustClassPath);
|
||||
if (currentProcess instanceof IProcess2) {
|
||||
for (IClasspathAdjuster adjuster : classPathAdjusters) {
|
||||
adjuster.collectInfo(currentProcess, neededLibraries);
|
||||
adjustClassPath = adjuster.adjustClassPath(currentProcess, adjustClassPath);
|
||||
}
|
||||
}
|
||||
|
||||
if (isNeedLoadmodules) {
|
||||
|
||||
Reference in New Issue
Block a user