From 6e10f7c8cf8c3edf573e9f04541f691c499b1a43 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 24 Jan 2015 17:54:43 +0100 Subject: [PATCH] Update TODOs for SPR-11598 --- .../core/annotation/AnnotatedElementUtilsTests.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-core/src/test/java/org/springframework/core/annotation/AnnotatedElementUtilsTests.java b/spring-core/src/test/java/org/springframework/core/annotation/AnnotatedElementUtilsTests.java index 3768efc8c7..e56533e9da 100644 --- a/spring-core/src/test/java/org/springframework/core/annotation/AnnotatedElementUtilsTests.java +++ b/spring-core/src/test/java/org/springframework/core/annotation/AnnotatedElementUtilsTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2014 the original author or authors. + * Copyright 2002-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -105,7 +105,7 @@ public class AnnotatedElementUtilsTests { Transactional.class.getName()); assertNotNull("AnnotationAttributes for @Transactional on SubSubClassWithInheritedAnnotation", attributes); - // TODO [SPR-11475] Set expected to true. + // TODO [SPR-11598] Set expected to true. boolean expected = false; assertEquals("readOnly flag for SubSubClassWithInheritedAnnotation.", expected, attributes.getBoolean("readOnly")); } @@ -117,7 +117,7 @@ public class AnnotatedElementUtilsTests { assertNotNull("AnnotationAttributtes for @Transactional on SubSubClassWithInheritedComposedAnnotation.", attributes); - // TODO [SPR-11475] Set expected to true. + // TODO [SPR-11598] Set expected to true. boolean expected = false; assertEquals("readOnly flag for SubSubClassWithInheritedComposedAnnotation.", expected, attributes.getBoolean("readOnly"));