Skip to content

Commit

Permalink
test against oraclejdk13
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Jun 5, 2020
1 parent 5e1d3c4 commit 9ab57f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
language: java

jdk: openjdk11
jdk:
- openjdk11
- oraclejdk13

# The trusty build environment allows for more memory, see https://docs.travis-ci.com/user/reference/overview/
dist: trusty
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/matsim/episim/policy/Restriction.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ else if (Double.isNaN(p))
*/
@Override
public String toString() {
return String.format("%.2f_%.2f_%s", remainingFraction, ciCorrection, maskUsage);
return String.format(Locale.ENGLISH,"%.2f_%.2f_%s", remainingFraction, ciCorrection, maskUsage);
}

/**
Expand Down

0 comments on commit 9ab57f1

Please sign in to comment.