Skip to content

Commit

Permalink
Revert "Upgrade jettison to 1.5.3 to fix CVE-2022-45685, CVE-2022-45693
Browse files Browse the repository at this point in the history
… (#271) (Bilwa S T reviewed by Laszlo Bodor)" - missing JIRA

This reverts commit fa51a59.
  • Loading branch information
abstractdog committed Feb 24, 2023
1 parent fa51a59 commit 88374f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
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.3</version>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ public static JSONObject generateSimpleJSONPlan(DAGPlan dagPlan) throws JSONExce
return dagJson;
}

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

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

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

0 comments on commit 88374f9

Please sign in to comment.