Skip to content

Commit 551006c

Browse files
committed
Make predicate private
1 parent ffa998e commit 551006c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/lib/semmle/code/java/Expr.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2132,7 +2132,7 @@ class TypeAccess extends Expr, Annotatable, @typeaccess {
21322132
/** Gets the compilation unit in which this type access occurs. */
21332133
override CompilationUnit getCompilationUnit() { result = Expr.super.getCompilationUnit() }
21342134

2135-
string toNormalString() {
2135+
private string toNormalString() {
21362136
result = this.getQualifier().toString() + "." + this.getType().toString()
21372137
or
21382138
not this.hasQualifier() and result = this.getType().toString()

0 commit comments

Comments
 (0)