There's a smattering of code like this in the codebase:
public void update() {
System.out.println("Daily alerts for stock on " + getName() + ":");
Iterator bulkIterator = createIterator();
[...]
We need to refactor this so all presentation code is handled centrally, without any business logic around it, or it will be very difficult to add a GUI later.
There's a smattering of code like this in the codebase:
We need to refactor this so all presentation code is handled centrally, without any business logic around it, or it will be very difficult to add a GUI later.