1 Infinite Loop

dev/0.11
modmuss50 2021-01-18 22:10:44 +00:00
parent 47097c65ce
commit a436eb7690
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ public class LoomGradleExtension {
Project p = this.project;
T result;
while (!isRootProject()) {
while (p.getRootProject() != p) {
if ((result = projectTFunction.apply(p)) != null) {
return result;
}