nealcrawford / CatFax

2 stars 1 forks source link

Subscribers should probably be a class #11

Closed rfrowe closed 8 years ago

rfrowe commented 8 years ago

In the interest of object oriented programming, subscribers should probably be a class

public class Subscriber implements Iterable {
    private String phoneNumber;
    private int displacement;
    private boolean needsFact;
}