Skip to content

Commit

Permalink
minor syntax tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Graff committed Jul 20, 2017
1 parent 23e81f9 commit b253810
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class AtlasSSEConverter implements Converter {
private static final ObjectMapper objectMapper = new ObjectMapper()
.setSerializationInclusion(NON_NULL)
.disable(FAIL_ON_UNKNOWN_PROPERTIES);
private static final List<String> expectedResultsTypeList = Arrays.asList(new String[]{"timeseries", "close"});
private static final List<String> expectedResultsTypeList = Arrays.asList("timeseries", "close");

@Override
public List<AtlasResults> fromBody(TypedInput body, Type type) throws ConversionException {
Expand Down

0 comments on commit b253810

Please sign in to comment.