Fix Transformers usage in Docs

**Cherry-pick to 5.0.x**
This commit is contained in:
Artem Bilan
2018-03-27 12:23:05 -04:00
parent 1cd6c11808
commit 8afdcb4893
3 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2016-2017 the original author or authors.
* Copyright 2016-2018 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.
@@ -76,7 +76,7 @@ public abstract class Transformers {
}
public static ObjectToMapTransformer toMap(JsonObjectMapper<?, ?> jsonObjectMapper, boolean shouldFlattenKeys) {
ObjectToMapTransformer transformer = new ObjectToMapTransformer();
ObjectToMapTransformer transformer = new ObjectToMapTransformer(jsonObjectMapper);
transformer.setShouldFlattenKeys(shouldFlattenKeys);
return transformer;
}