Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqLisena committed Jun 26, 2018
1 parent c246a9a commit aec2158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'org.doremus'
version '1.3.0'
version '1.3.1'

sourceCompatibility = 1.8

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/doremus/isnimatcher/ISNI.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static ISNIRecord search(String forename, String surname, String date) th
if (date == null) return records.get(0);
String _date = cleanDate(date);

for (ISNIRecord r : records) r.save("test/" + r.id + ".xml");
// for (ISNIRecord r : records) r.save("test/" + r.id + ".xml");
return records.stream()
.filter(r -> r.hasName(forename, surname, true))
.filter(r -> dateMatch(_date, r.getBirthYear()))
Expand Down

0 comments on commit aec2158

Please sign in to comment.