Skip to content

Instantly share code, notes, and snippets.

@ArvinRokni
Created June 6, 2019 23:33
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 ArvinRokni/d563a0617b19a6105265ec99cadb66f4 to your computer and use it in GitHub Desktop.
Save ArvinRokni/d563a0617b19a6105265ec99cadb66f4 to your computer and use it in GitHub Desktop.
@JvmOverloads
public Sample(@Nullable String name, @Nullable Date date) {
this(name, date, false);
}
@JvmOverloads
public Sample(@Nullable String name) {
this(name, Date(), false);
}
@JvmOverloads
public Sample() {
this("" , Date(), false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment