File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
java/ql/test/library-tests/frameworks/spring/componentscan Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ import java
2
2
import semmle.code.java.frameworks.spring.Spring
3
3
4
4
/**
5
- * Mark the XML configuration profile as never enabled. This should allow us to deduce that the
5
+ * A marker class that marks the XML configuration profile as never enabled. This should allow us to deduce that the
6
6
* com.semmle.g.ProfileComponent is dead, because com.semmle.g is only a base package in the
7
7
* profile-config.xml file, which is only enabled if xmlConfigurationProfile is enabled.
8
8
*/
9
- class XMLConfigurationProfile extends NeverEnabledSpringProfile {
10
- XMLConfigurationProfile ( ) { this = "xmlConfigurationProfile" }
9
+ class XmlConfigurationProfile extends NeverEnabledSpringProfile {
10
+ XmlConfigurationProfile ( ) { this = "xmlConfigurationProfile" }
11
11
}
12
12
13
13
/**
14
- * Mark the annotation profile as always enabled. This should allow us to deduce that the
14
+ * A marker class that marks the annotation profile as always enabled. This should allow us to deduce that the
15
15
* com.semmle.e.DeadProfileComponent is dead, because the profile is "!annotationProfile", and that
16
16
* com.semmle.e.LiveProfileComponent is live, because the profile is "annotationProfile".
17
17
*/
You can’t perform that action at this time.
0 commit comments