--- dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/AddressSource.java 2016/01/25 21:43:59 2844 +++ dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/AddressSource.java 2016/02/12 22:47:30 2939 @@ -4,12 +4,12 @@ public interface AddressSource extends AutoCloseable { - public String getFilename(); + String getFilename(); - public String getDistributor(); + String getDistributor(); - - public void validate() throws IOException; - public AddressSourceEntry getNextEntry() throws IOException; + void validate() throws IOException; + + AddressSourceEntry getNextEntry() throws IOException; }