-
-
Save jwalgemoed/37fba8de15c8d080c3e30073fea19f28 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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