Skip to content

Commit e60c016

Browse files
committed
Format fixes
1 parent cbf81b8 commit e60c016

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointCharacteristics.qll

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,10 @@ abstract class EndpointCharacteristic extends string {
4040
);
4141
}
4242

43-
/*
43+
/**
4444
* Endpoints that were identified as "DomBasedXssSink" by the standard Javascript library are XSS sinks with maximal
4545
* confidence.
4646
*/
47-
4847
private class DomBasedXssSinkCharacteristic extends EndpointCharacteristic {
4948
DomBasedXssSinkCharacteristic() { this = "DomBasedXssSink" }
5049

@@ -57,11 +56,10 @@ private class DomBasedXssSinkCharacteristic extends EndpointCharacteristic {
5756
}
5857
}
5958

60-
/*
59+
/**
6160
* Endpoints that were identified as "TaintedPathSink" by the standard Javascript library are path injection sinks with
6261
* maximal confidence.
6362
*/
64-
6563
private class TaintedPathSinkCharacteristic extends EndpointCharacteristic {
6664
TaintedPathSinkCharacteristic() { this = "TaintedPathSink" }
6765

@@ -74,11 +72,10 @@ private class TaintedPathSinkCharacteristic extends EndpointCharacteristic {
7472
}
7573
}
7674

77-
/*
75+
/**
7876
* Endpoints that were identified as "SqlInjectionSink" by the standard Javascript library are SQL injection sinks with
7977
* maximal confidence.
8078
*/
81-
8279
private class SqlInjectionSinkCharacteristic extends EndpointCharacteristic {
8380
SqlInjectionSinkCharacteristic() { this = "SqlInjectionSink" }
8481

@@ -93,11 +90,10 @@ private class SqlInjectionSinkCharacteristic extends EndpointCharacteristic {
9390
}
9491
}
9592

96-
/*
93+
/**
9794
* Endpoints that were identified as "NosqlInjectionSink" by the standard Javascript library are NoSQL injection sinks
9895
* with maximal confidence.
9996
*/
100-
10197
private class NosqlInjectionSinkCharacteristic extends EndpointCharacteristic {
10298
NosqlInjectionSinkCharacteristic() { this = "NosqlInjectionSink" }
10399

0 commit comments

Comments
 (0)