File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
java/ql/lib/semmle/code/java/security Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ private import semmle.code.java.dataflow.ExternalFlow
8
8
/**
9
9
* A message interpolator Type that perform Expression Language (EL) evaluations.
10
10
*/
11
- class ELMessageInterpolatorType extends RefType {
11
+ private class ELMessageInterpolatorType extends RefType {
12
12
ELMessageInterpolatorType ( ) {
13
13
this .getASourceSupertype * ( )
14
14
.hasQualifiedName ( "org.hibernate.validator.messageinterpolation" ,
@@ -19,7 +19,7 @@ class ELMessageInterpolatorType extends RefType {
19
19
/**
20
20
* A method call that sets the application's default message interpolator.
21
21
*/
22
- class SetMessageInterpolatorCall extends MethodAccess {
22
+ private class SetMessageInterpolatorCall extends MethodAccess {
23
23
SetMessageInterpolatorCall ( ) {
24
24
exists ( Method m , RefType t |
25
25
this .getMethod ( ) = m and
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ private import semmle.code.java.dataflow.ExternalFlow
10
10
/**
11
11
* A method that returns the name of an archive entry.
12
12
*/
13
- class ArchiveEntryNameMethod extends Method {
13
+ private class ArchiveEntryNameMethod extends Method {
14
14
ArchiveEntryNameMethod ( ) {
15
15
exists ( RefType archiveEntry |
16
16
archiveEntry .hasQualifiedName ( "java.util.zip" , "ZipEntry" ) or
You can’t perform that action at this time.
0 commit comments