remove more upper-case variable names

This commit is contained in:
Philip Ginsbach 2022-09-15 14:35:52 +01:00
Родитель df5178d7ee
Коммит 26099d6ab7
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -12,5 +12,5 @@ import cpp
from Class c
where c.fromSource()
select c as Class, c.getMetrics().getAfferentCoupling() as afferentCoupling,
select c as class_, c.getMetrics().getAfferentCoupling() as afferentCoupling,
c.getMetrics().getEfferentSourceCoupling() as efferentCoupling order by afferentCoupling desc

Просмотреть файл

@ -119,4 +119,4 @@ predicate potentialViolation(InputBuffer source, FormatBuffer dest) {
from InputBuffer source, FormatBuffer dest
where potentialViolation(source, dest)
select dest.getFile() as File, dest as FormatString
select dest.getFile() as file, dest as formatString