Skip to content

Commit 80e03c3

Browse files
committed
Improve ql/doc style
1 parent 27522a2 commit 80e03c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

java/ql/test/library-tests/frameworks/spring/componentscan/SpringProfiles.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import java
22
import semmle.code.java.frameworks.spring.Spring
33

44
/**
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
66
* com.semmle.g.ProfileComponent is dead, because com.semmle.g is only a base package in the
77
* profile-config.xml file, which is only enabled if xmlConfigurationProfile is enabled.
88
*/
9-
class XMLConfigurationProfile extends NeverEnabledSpringProfile {
10-
XMLConfigurationProfile() { this = "xmlConfigurationProfile" }
9+
class XmlConfigurationProfile extends NeverEnabledSpringProfile {
10+
XmlConfigurationProfile() { this = "xmlConfigurationProfile" }
1111
}
1212

1313
/**
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
1515
* com.semmle.e.DeadProfileComponent is dead, because the profile is "!annotationProfile", and that
1616
* com.semmle.e.LiveProfileComponent is live, because the profile is "annotationProfile".
1717
*/

0 commit comments

Comments
 (0)