Skip to content

Instantly share code, notes, and snippets.

@tyoshikawa1106
Created April 30, 2013 13:17
Show Gist options
  • Save tyoshikawa1106/5488618 to your computer and use it in GitHub Desktop.
Save tyoshikawa1106/5488618 to your computer and use it in GitHub Desktop.
? 判定文 After
private Account getAccount() {
List<Account> accounts = [
select
Id
,Name
from
Account
limit 1
];
return accounts.isEmpty() ? new Account() : accounts[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment