Skip to content

Instantly share code, notes, and snippets.

@MarcoSignoretto
Last active November 11, 2023 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcoSignoretto/50ee23d8f82be28d57a28c79271251ab to your computer and use it in GitHub Desktop.
Save MarcoSignoretto/50ee23d8f82be28d57a28c79271251ab to your computer and use it in GitHub Desktop.
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