ensure consistent casing of names

This commit is contained in:
erik-krogh
2022-09-09 10:28:57 +02:00
parent 9893650f7c
commit 26d8553f6e
230 changed files with 702 additions and 657 deletions

View File

@@ -28,7 +28,7 @@ module ServerSideRequestForgery {
/**
* Gets the request this sink belongs to.
*/
abstract HTTP::Client::Request getRequest();
abstract Http::Client::Request getRequest();
}
/**
@@ -57,7 +57,7 @@ module ServerSideRequestForgery {
/** The URL of an HTTP request, considered as a sink. */
class HttpRequestUrlAsSink extends Sink {
HTTP::Client::Request req;
Http::Client::Request req;
HttpRequestUrlAsSink() {
req.getAUrlPart() = this and
@@ -74,7 +74,7 @@ module ServerSideRequestForgery {
not req.getScope().getEnclosingModule().getName() in ["http.client", "httplib"]
}
override HTTP::Client::Request getRequest() { result = req }
override Http::Client::Request getRequest() { result = req }
}
/**