Skip to content

Instantly share code, notes, and snippets.

@jeffscottbrown
Last active October 23, 2015 02:04
Show Gist options
  • Save jeffscottbrown/8794211e48e39f1e20b5 to your computer and use it in GitHub Desktop.
Save jeffscottbrown/8794211e48e39f1e20b5 to your computer and use it in GitHub Desktop.
Object localObject1;
String str1;
if ((args.get("firstName") == null ? 1 : 0) != 0)
{
localObject1 = null;
this.firstName = ((String)ShortTypeHandling.castToString(localObject1));
}
else
{
str1 = (String)ShortTypeHandling.castToString(args.get("firstName"));
this.firstName = str1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment