-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Development: Analyze REST calls and endpoints (#8771)
- Loading branch information
1 parent
5c58835
commit f6b45e0
Showing
19 changed files
with
729 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,5 @@ | |
"jsx": true | ||
} | ||
}, | ||
"rules": {}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
} | ||
"rules": {} | ||
} |
83 changes: 0 additions & 83 deletions
83
...-connections/src/main/java/de/tum/cit/endpointanalysis/AnalysisOfEndpointConnections.java
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
...s-of-endpoint-connections/src/main/java/de/tum/cit/endpointanalysis/EndpointAnalysis.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package de.tum.cit.endpointanalysis; | ||
|
||
import java.util.List; | ||
|
||
public record EndpointAnalysis(List<UsedEndpoints> usedEndpoints, List<EndpointInformation> unusedEndpoints) { | ||
} |
Oops, something went wrong.