Skip to content

Commit 644c1a2

Browse files
committedJan 12, 2017
DATAMONGO-1587 - Migrate ticket references in test code to Spring Framework style.
1 parent 8df9d30 commit 644c1a2

File tree

170 files changed

+2071
-7474
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+2071
-7474
lines changed
 

‎spring-data-mongodb-log4j/src/test/java/org/springframework/data/mongodb/log4j/MongoLog4jAppenderUnitTests.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013 the original author or authors.
2+
* Copyright 2013-2017 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.
@@ -24,10 +24,7 @@
2424
*/
2525
public class MongoLog4jAppenderUnitTests {
2626

27-
/**
28-
* @see DATAMONGO-641
29-
*/
30-
@Test
27+
@Test // DATAMONGO-641
3128
public void closesWithoutMongoInstancePresent() {
3229
new MongoLog4jAppender().close();
3330
}

‎spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/convert/MappingMongoConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ public DBRef toDBRef(Object object, MongoPersistentProperty referringProperty) {
339339
Assert.isTrue(annotation != null, "The referenced property has to be mapped with @DBRef!");
340340
}
341341

342-
// @see DATAMONGO-913
342+
// DATAMONGO-913
343343
if (object instanceof LazyLoadingProxy) {
344344
return ((LazyLoadingProxy) object).toDBRef();
345345
}

0 commit comments

Comments
 (0)