Skip to content

Commit

Permalink
resource value class member was using the wrong name, "streams" vs "o…
Browse files Browse the repository at this point in the history
…utputs", breaking the output listing for a stream

fixes #832
  • Loading branch information
kroepke committed Jan 12, 2015
1 parent 143a75c commit f82cb09
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -30,9 +30,9 @@ public abstract class OutputListResponse {
public abstract long total(); public abstract long total();


@JsonProperty @JsonProperty
public abstract Collection<Output> streams(); public abstract Collection<Output> outputs();


public static OutputListResponse create(long total, Collection<Output> streams) { public static OutputListResponse create(long total, Collection<Output> outputs) {
return new AutoValue_OutputListResponse(total, streams); return new AutoValue_OutputListResponse(total, outputs);
} }
} }

0 comments on commit f82cb09

Please sign in to comment.