1 Infinite Loop

This commit is contained in:
modmuss50 2021-01-18 22:10:44 +00:00
parent 47097c65ce
commit a436eb7690

View file

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