ModuleA.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class ModuleA { | |
public final void run() { | |
DishesRepository dishesRepository = DishRepositoryFactory.INSTANCE.create(); | |
Iterable $this$forEach$iv = (Iterable)DefaultImpls.getDishes$default(dishesRepository, (DishSpecification)null, 1, (Object)null); | |
int $i$f$forEach = false; | |
Iterator var4 = $this$forEach$iv.iterator(); | |
while(var4.hasNext()) { | |
Object element$iv = var4.next(); | |
Dish it = (Dish)element$iv; | |
int var7 = false; | |
String var8 = it.getName() + " - " + it.getDescription() + " - " + it.getPrice(); | |
System.out.println(var8); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment