Skip to content

Instantly share code, notes, and snippets.

@MarcoSignoretto
Last active November 11, 2023 17:53
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
ModuleA.java
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