Skip to content

Commit 6e10f7c

Browse files
committed
Update TODOs for SPR-11598
1 parent 2d91838 commit 6e10f7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-core/src/test/java/org/springframework/core/annotation/AnnotatedElementUtilsTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2014 the original author or authors.
2+
* Copyright 2002-2015 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.
@@ -105,7 +105,7 @@ public void getAnnotationAttributesFavorsInheritedAnnotationsOverMoreLocallyDecl
105105
Transactional.class.getName());
106106
assertNotNull("AnnotationAttributes for @Transactional on SubSubClassWithInheritedAnnotation", attributes);
107107

108-
// TODO [SPR-11475] Set expected to true.
108+
// TODO [SPR-11598] Set expected to true.
109109
boolean expected = false;
110110
assertEquals("readOnly flag for SubSubClassWithInheritedAnnotation.", expected, attributes.getBoolean("readOnly"));
111111
}
@@ -117,7 +117,7 @@ public void getAnnotationAttributesFavorsInheritedComposedAnnotationsOverMoreLoc
117117
assertNotNull("AnnotationAttributtes for @Transactional on SubSubClassWithInheritedComposedAnnotation.",
118118
attributes);
119119

120-
// TODO [SPR-11475] Set expected to true.
120+
// TODO [SPR-11598] Set expected to true.
121121
boolean expected = false;
122122
assertEquals("readOnly flag for SubSubClassWithInheritedComposedAnnotation.", expected,
123123
attributes.getBoolean("readOnly"));

0 commit comments

Comments
 (0)