Skip to content

Instantly share code, notes, and snippets.

@MasoudFallahpour
Last active July 20, 2022 14:22
Show Gist options
  • Save MasoudFallahpour/d5af3d9dbdbcc3147f8a33c78ea1c3c2 to your computer and use it in GitHub Desktop.
Save MasoudFallahpour/d5af3d9dbdbcc3147f8a33c78ea1c3c2 to your computer and use it in GitHub Desktop.
public final class WordProcessor implements Software {
// $FF: synthetic field
private final Software $$delegate_0;
public WordProcessor(@NotNull Software software) {
Intrinsics.checkNotNullParameter(software, "software");
super();
this.$$delegate_0 = software;
}
@NotNull
public String getLicense() {
return this.$$delegate_0.getLicense();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment