Skip to content

Commit

Permalink
Merge pull request #19 from HakumenNC/master
Browse files Browse the repository at this point in the history
Fix #18
  • Loading branch information
adriens authored Dec 9, 2020
2 parents ff2758c + 7b07e24 commit 9c5451b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.adriens.github.opt.tempsattente</groupId>
<artifactId>tempsattente-sdk</artifactId>
<version>1.9</version>
<version>1.10</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public static ArrayList<Agence> getAgences(Commune commune) throws IOException {

if (coordonneesXYPrecises != null) {
agence.setCoordonneeXPrecise(coordonneesXYPrecises[0]);
agence.setCoordonneeXPrecise(coordonneesXYPrecises[1]);
agence.setCoordonneeYPrecise(coordonneesXYPrecises[1]);
}
} catch (Exception e) {
logger.warn("Les coordonnées X et Y précises de l'agence <{}> sont introuvables...", agence.getDesignation());
Expand Down

0 comments on commit 9c5451b

Please sign in to comment.