Skip to content

Commit 76e4077

Browse files
committed
Delete unused classes
1 parent 24addd5 commit 76e4077

File tree

1 file changed

+0
-48
lines changed

1 file changed

+0
-48
lines changed

java/ql/src/semmle/code/java/frameworks/javaee/jsf/JSFRenderer.qll

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -12,54 +12,6 @@ class FacesContext extends RefType {
1212
}
1313
}
1414

15-
/**
16-
* The JSF class `ExternalContext` allowing JavaServer Faces based applications to run in
17-
* either a Servlet or a Portlet environment.
18-
*/
19-
class ExternalContext extends RefType {
20-
ExternalContext() {
21-
this.hasQualifiedName(["javax.faces.context", "jakarta.faces.context"], "ExternalContext")
22-
}
23-
}
24-
25-
/**
26-
* The base class type `UIComponent` for all user interface components in JavaServer Faces.
27-
*/
28-
class FacesUIComponent extends RefType {
29-
FacesUIComponent() {
30-
this.hasQualifiedName(["javax.faces.component", "jakarta.faces.component"], "UIComponent")
31-
}
32-
}
33-
34-
/**
35-
* The JSF class `Renderer` that converts internal representation of `UIComponent` into the output
36-
* stream (or writer) associated with the response we are creating for a particular request.
37-
*/
38-
class FacesRenderer extends RefType {
39-
FacesRenderer() {
40-
this.hasQualifiedName(["javax.faces.render", "jakarta.faces.render"], "Renderer")
41-
}
42-
}
43-
44-
/**
45-
* The JSF class `ResponseWriter` that outputs and producing elements and attributes for markup
46-
* languages like HTML and XML.
47-
*/
48-
class FacesResponseWriter extends RefType {
49-
FacesResponseWriter() {
50-
this.hasQualifiedName(["javax.faces.context", "jakarta.faces.context"], "ResponseWriter")
51-
}
52-
}
53-
54-
/**
55-
* The class `ResponseStream` that produces binary output.
56-
*/
57-
class FacesResponseStream extends RefType {
58-
FacesResponseStream() {
59-
this.hasQualifiedName(["javax.faces.context", "jakarta.faces.context"], "ResponseStream")
60-
}
61-
}
62-
6315
private class ExternalContextSource extends SourceModelCsv {
6416
override predicate row(string row) {
6517
row =

0 commit comments

Comments
 (0)