Skip to content

Commit 2b869d5

Browse files
committed
[SPR-5902] JavaDoc polishing.
1 parent e31d947 commit 2b869d5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

org.springframework.test/src/main/java/org/springframework/test/annotation/IfProfileValue.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2008 the original author or authors.
2+
* Copyright 2002-2009 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -31,7 +31,7 @@
3131
* test will be enabled.
3232
* </p>
3333
* <p>
34-
* Note: {@link IfProfileValue @IfProfileValue} can be applied at either the
34+
* Note: <code>&#064;IfProfileValue</code> can be applied at either the
3535
* class or method level.
3636
* </p>
3737
* <p>
@@ -41,24 +41,24 @@
4141
* </p>
4242
*
4343
* <pre class="code">
44-
* {@link IfProfileValue @IfProfileValue}(name=&quot;java.vendor&quot;, value=&quot;Sun Microsystems Inc.&quot;)
45-
* testSomething() {
44+
* &#064;IfProfileValue(name=&quot;java.vendor&quot;, value=&quot;Sun Microsystems Inc.&quot;)
45+
* public void testSomething() {
4646
* // ...
4747
* }
4848
* </pre>
4949
*
5050
* <p>
51-
* You can alternatively configure {@link IfProfileValue @IfProfileValue} with
51+
* You can alternatively configure <code>&#064;IfProfileValue</code> with
5252
* <em>OR</em> semantics for multiple {@link #values() values} as follows
5353
* (assuming a {@link ProfileValueSource} has been appropriately configured for
5454
* the &quot;test-groups&quot; name):
5555
* </p>
5656
*
5757
* <pre class="code">
58-
* {@link IfProfileValue @IfProfileValue}(name=&quot;test-groups&quot;, values={&quot;unit-tests&quot;, &quot;integration-tests&quot;})
59-
* public void testWhichRunsForUnitOrIntegrationTestGroups() {
60-
* // ...
61-
* }
58+
* &#064;IfProfileValue(name=&quot;test-groups&quot;, values={&quot;unit-tests&quot;, &quot;integration-tests&quot;})
59+
* public void testWhichRunsForUnitOrIntegrationTestGroups() {
60+
* // ...
61+
* }
6262
* </pre>
6363
*
6464
* @author Rod Johnson

0 commit comments

Comments
 (0)