@@ -227,23 +227,23 @@ public void getAllAnnotationAttributesFavorsInheritedComposedAnnotationsOverMore
227
227
* If the "value" entry contains both "DerivedTxConfig" AND "TxConfig", then
228
228
* the algorithm is accidentally picking up shadowed annotations of the same
229
229
* type within the class hierarchy. Such undesirable behavior would cause the
230
- * logic in {@link org.springframework.context.annotation.ProfileCondition}
230
+ * logic in {@code org.springframework.context.annotation.ProfileCondition}
231
231
* to fail.
232
- * @see org.springframework.core.env.EnvironmentSystemIntegrationTests#mostSpecificDerivedClassDrivesEnvironment_withDevEnvAndDerivedDevConfigClass
233
232
*/
234
233
@ Test
235
234
public void getAllAnnotationAttributesOnClassWithLocalAnnotationThatShadowsAnnotationFromSuperclass () {
235
+ // See org.springframework.core.env.EnvironmentSystemIntegrationTests#mostSpecificDerivedClassDrivesEnvironment_withDevEnvAndDerivedDevConfigClass
236
236
MultiValueMap <String , Object > attributes = getAllAnnotationAttributes (DerivedTxConfig .class , TX_NAME );
237
237
assertNotNull ("Annotation attributes map for @Transactional on DerivedTxConfig" , attributes );
238
238
assertEquals ("value for DerivedTxConfig" , asList ("DerivedTxConfig" ), attributes .get ("value" ));
239
239
}
240
240
241
241
/**
242
- * Note: this functionality is required by {@link org.springframework.context.annotation.ProfileCondition}.
243
- * @see org.springframework.core.env.EnvironmentSystemIntegrationTests
242
+ * Note: this functionality is required by {@code org.springframework.context.annotation.ProfileCondition}.
244
243
*/
245
244
@ Test
246
245
public void getAllAnnotationAttributesOnClassWithMultipleComposedAnnotations () {
246
+ // See org.springframework.core.env.EnvironmentSystemIntegrationTests
247
247
MultiValueMap <String , Object > attributes = getAllAnnotationAttributes (TxFromMultipleComposedAnnotations .class , TX_NAME );
248
248
assertNotNull ("Annotation attributes map for @Transactional on TxFromMultipleComposedAnnotations" , attributes );
249
249
assertEquals ("value for TxFromMultipleComposedAnnotations." , asList ("TxInheritedComposed" , "TxComposed" ),
0 commit comments