Skip to content

Commit 28ab4c0

Browse files
committed
Make interpretSpec/3 private again
1 parent c94c694 commit 28ab4c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csharp/ql/src/semmle/code/csharp/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ module Private {
650650
interpretSpec(spec, 0, stack)
651651
}
652652

653-
predicate interpretSpec(string spec, int idx, SummaryComponentStack stack) {
653+
private predicate interpretSpec(string spec, int idx, SummaryComponentStack stack) {
654654
exists(string c |
655655
relevantSpec(spec) and
656656
specLength(spec, idx + 1) and

java/ql/src/semmle/code/java/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ module Private {
650650
interpretSpec(spec, 0, stack)
651651
}
652652

653-
predicate interpretSpec(string spec, int idx, SummaryComponentStack stack) {
653+
private predicate interpretSpec(string spec, int idx, SummaryComponentStack stack) {
654654
exists(string c |
655655
relevantSpec(spec) and
656656
specLength(spec, idx + 1) and

0 commit comments

Comments
 (0)