patch upper-case acronyms to be PascalCase

This commit is contained in:
Erik Krogh Kristensen
2022-03-11 11:10:33 +01:00
parent e3a15792fa
commit 69353bb014
422 changed files with 3532 additions and 2244 deletions

View File

@@ -100,7 +100,7 @@ class SpringPureClass extends Class {
// Setter method by autowiring, either in the XML or by annotation
c = this.getAMethod().(SpringBeanAutowiredCallable)
or
c = this.getAMethod().(SpringBeanXMLAutowiredSetterMethod)
c = this.getAMethod().(SpringBeanXmlAutowiredSetterMethod)
)
}
}
@@ -189,7 +189,7 @@ class LiveSpringBean extends SpringBean {
)
or
// Injected by autowired specified in XML
exists(SpringBeanXMLAutowiredSetterMethod setterMethod |
exists(SpringBeanXmlAutowiredSetterMethod setterMethod |
// The config method must be on a live bean
setterMethod.getDeclaringType().(SpringBeanRefType).getSpringBean() instanceof
LiveSpringBean

View File

@@ -51,7 +51,7 @@ class SpringPropertyUseShortcut extends SpringProperty {
}
}
from SpringXMLElement springElement, string msg
from SpringXmlElement springElement, string msg
where
exists(SpringConstructorArgUseShortcut cons | cons = springElement and msg = cons.getMessage())
or