Skip to content

Instantly share code, notes, and snippets.

@gcandal
Created September 30, 2018 09:21
Show Gist options
  • Save gcandal/b49bad3d13cb279a63178d2ec53650d4 to your computer and use it in GitHub Desktop.
Save gcandal/b49bad3d13cb279a63178d2ec53650d4 to your computer and use it in GitHub Desktop.
class AccountingLedger {
AccountingLedger(AccountingLedgerStorage storage) {
this.storage = Objects.requireNonNull(storage);
}
void save(final Record record) {
Objects.requireNonNull(record);
validate(record);
storage.save(record);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment