-
Notifications
You must be signed in to change notification settings - Fork 209
Open
Description
Hello guys,
First of all, thanks for writing an awesome book , it is a really nice way of learning by doing.
I have a question regarding your interface BankStatementParser for the low coupling. I think the private method "parseFrom" shouldn't be exposed in the interface and its access modifier should remain private. Thus it should look like this, I guess:
public interface IBankStatementParser {
// BankTransaction parseFrom(String line);
List<BankTransaction> parseLinesFrom(List<String> lines);
}
Am I missing something here? Would appreciate you feedback!
Kind regards,
K
Metadata
Metadata
Assignees
Labels
No labels