Skip to content

Commit 0b2d832

Browse files
Release/1.3.2 (#4)
* Releasing 1.3.1. Jackson dependencies update * Aligning with Jackson Core 2.10.0 or later as suggested here (json-snapshot/json-snapshot.github.io#27) Release 1.3.2
1 parent f6837d5 commit 0b2d832

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.ohdsi</groupId>
88
<artifactId>standardized-analysis-utils</artifactId>
9-
<version>1.3.1</version>
9+
<version>1.3.2</version>
1010
<properties>
1111
<graalvm.version>1.0.0-rc15</graalvm.version>
1212
<jackson.version>2.10.5</jackson.version>

src/main/java/org/ohdsi/analysis/Utils.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,12 @@ public static String serializePretty(Object object, Boolean includeNulls) throws
151151

152152
DefaultPrettyPrinter prettyPrinter = new DefaultPrettyPrinter() {
153153

154+
@Override
155+
public DefaultPrettyPrinter createInstance() {
156+
157+
return this;
158+
}
159+
154160
public DefaultPrettyPrinter withSeparators(Separators separators) {
155161

156162
_separators = separators;

0 commit comments

Comments
 (0)