Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>1.5.1</version>
<version>1.5.3</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static JSONObject generateSimpleJSONPlan(DAGPlan dagPlan) throws JSONExce
return dagJson;
}

public static JSONObject convertDataEventDependencyInfoToJSON(List<DataEventDependencyInfo> info) {
public static JSONObject convertDataEventDependencyInfoToJSON(List<DataEventDependencyInfo> info) throws JSONException{
return new JSONObject(convertDataEventDependecyInfoToATS(info));
}

Expand Down Expand Up @@ -436,7 +436,7 @@ public static Map<String,Object> convertVertexStatsToATSMap(
}

public static JSONObject convertServicePluginToJSON(
ServicePluginInfo servicePluginInfo) {
ServicePluginInfo servicePluginInfo) throws JSONException{
JSONObject jsonObject = new JSONObject(convertServicePluginToATSMap(servicePluginInfo));
return jsonObject;
}
Expand Down