Skip to content

Commit

Permalink
debugging action
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Thurner committed Aug 13, 2024
1 parent 87049b6 commit a9a7e49
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ private static void analyzeRestCalls() {
ObjectMapper mapper = new ObjectMapper();

try {
List<EndpointClassInformation> endpointClasses = mapper.readValue(new File("supporting_scripts/analysis-of-endpoint-connections/endpoints.json"),
List<EndpointClassInformation> endpointClasses = mapper.readValue(new File("endpoints.json"),
new TypeReference<List<EndpointClassInformation>>() {
});
List<RestCallFileInformation> restCalls = mapper.readValue(new File("supporting_scripts/analysis-of-endpoint-connections/restCalls.json"),
List<RestCallFileInformation> restCalls = mapper.readValue(new File("restCalls.json"),
new TypeReference<List<RestCallFileInformation>>() {
});

Expand Down

0 comments on commit a9a7e49

Please sign in to comment.