> @@ -72,8 +72,8 @@ public Builder affinities(List<String> affinities) {
> * @param jobs Background jobs related to this resource
> * @return DriveInfo Builder
> */
> - public Builder jobs(List<String> jobs) {
> - this.jobs = ImmutableList.copyOf(jobs);
> + public Builder jobs(List<Job> jobs) {
> + this.jobs = jobs;Change to: ```java this.jobs = ImmutableList.copyOf(jobs); ``` --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/67/files#r13280211
