1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00
This commit is contained in:
oblonski 2015-06-25 06:56:44 +02:00
parent 4deb08a31c
commit 353bba0ef4
2 changed files with 28 additions and 1 deletions

View file

@ -58,7 +58,7 @@ public class Skills {
* @return builder
*/
public Builder addAllSkills(Collection<String> skills){
for(String skill : skills) this.skills.add(skill);
for(String skill : skills) addSkill(skill);
return this;
}