MongoSessionConverter -> AbstractMongoSessionConverter

Using Abstract prefix follows conventions for abstract classes
beginning with Abstract. This also opens up the door to introduce
a MongoSessionConverter interface in the future.

Issue gh-17
This commit is contained in:
Rob Winch
2016-03-07 11:30:25 -06:00
parent 34cebc3df6
commit 216bfd7355
5 changed files with 11 additions and 11 deletions

View File

@@ -51,7 +51,7 @@ public class MongoOperationsSessionRepositoryTests {
@Mock
MongoOperations mongoOperations;
@Mock
MongoSessionConverter converter;
AbstractMongoSessionConverter converter;
MongoOperationsSessionRepository sut;