Skip to content

Instantly share code, notes, and snippets.

@MarcoSignoretto
Created November 11, 2023 18:02
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/59db026cf82ae240e368a73839d99998 to your computer and use it in GitHub Desktop.
Save MarcoSignoretto/59db026cf82ae240e368a73839d99998 to your computer and use it in GitHub Desktop.
DishesRepository.kt
public interface DishesRepository {
@NotNull
List getDishes(@NotNull DishSpecification var1);
public static final class DefaultImpls {
// $FF: synthetic method
public static List getDishes$default(DishesRepository var0, DishSpecification var1, int var2, Object var3) {
if (var3 != null) {
throw new UnsupportedOperationException("Super calls with default arguments not supported in this target, function: getDishes");
} else {
if ((var2 & 1) != 0) {
var1 = DishSpecifications.INSTANCE.all();
}
return var0.getDishes(var1);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment