Skip to content

Instantly share code, notes, and snippets.

@tyoshikawa1106
Last active December 16, 2015 19:58
Show Gist options
  • Save tyoshikawa1106/5488607 to your computer and use it in GitHub Desktop.
Save tyoshikawa1106/5488607 to your computer and use it in GitHub Desktop.
? 判定文 Before
private Account getAccount() {
List<Account> accounts = [
select
Id
,Name
from
Account
limit 1
];
if (accounts.isEmpty() == true) {
return accounts[0];
}
return new Account();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment