From 86cc313d806931e86ad16f248d69fffd06c5f611 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Thu, 24 Feb 2011 17:37:36 +0000 Subject: [PATCH] =?UTF-8?q?Quick=20fix=20for=20missing=20createIsNewStrate?= =?UTF-8?q?gy(=E2=80=A6).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Solid refactoring will follow up with implementation of DATACMNS-17. --- .../data/document/mongodb/repository/SimpleMongoRepository.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/repository/SimpleMongoRepository.java b/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/repository/SimpleMongoRepository.java index 1a4611f16..f74f1d07b 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/repository/SimpleMongoRepository.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/repository/SimpleMongoRepository.java @@ -61,6 +61,7 @@ public class SimpleMongoRepository extends Assert.notNull(template); this.template = template; + createIsNewStrategy(domainClass); }