Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Created January 3, 2018 15:07
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 jwalgemoed/37fba8de15c8d080c3e30073fea19f28 to your computer and use it in GitHub Desktop.
Save jwalgemoed/37fba8de15c8d080c3e30073fea19f28 to your computer and use it in GitHub Desktop.
public final class Environment {
@NotNull
public String applicationName;
@NotNull
public final String getApplicationName() {
String var10000 = this.applicationName;
if (this.applicationName == null) {
Intrinsics.throwUninitializedPropertyAccessException("applicationName");
}
return var10000;
}
public final void setApplicationName(@NotNull String var1) {
Intrinsics.checkParameterIsNotNull(var1, "<set-?>");
this.applicationName = var1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment