Skip to content

Commit

Permalink
These changes should allow the project to build on Jenkins, rather th…
Browse files Browse the repository at this point in the history
…an error out when jsonschema2pojo tries to build .svn directories

git-svn-id: https://svn.apache.org/repos/asf/incubator/streams/trunk@1566792 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
sblackmon committed Feb 10, 2014
1 parent f5a5045 commit c179122
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -28,6 +28,7 @@
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.List;

import static org.apache.streams.data.util.ActivityUtil.*;
import static org.apache.streams.data.util.JsonUtil.jsonToJsonNode;
Expand Down Expand Up @@ -65,7 +66,7 @@ public Activity deserialize(String serialized) {
}

@Override
public List<Activity> deserializeAll(List<String> serializedList) {
public java.util.List<Activity> deserializeAll(List<String> serializedList) {
throw new NotImplementedException("Not currently supported by this deserializer");
}

Expand Down

0 comments on commit c179122

Please sign in to comment.