Skip to content

Commit

Permalink
Merge branch '2.17' into 2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 5, 2024
2 parents c40c204 + f81ffc2 commit 1eda007
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class CBORMapperConfigurator
extends MapperConfiguratorBase<CBORMapperConfigurator, ObjectMapper>
{
// @since 2.18
// @since 2.17.1
private final ReentrantLock _lock = new ReentrantLock();

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class JsonMapperConfigurator
extends MapperConfiguratorBase<JsonMapperConfigurator, ObjectMapper>
{
// @since 2.18
// @since 2.17.1
private final ReentrantLock _lock = new ReentrantLock();

/*
Expand Down
4 changes: 4 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Sub-modules:

2.18.0 (not yet released)

No changes since 2.17

2.17.1 (not yet released)

#184: Use `ReentrantLock`s instead of synchronized blocks
(contributed by @pjfanning)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class SmileMapperConfigurator
extends MapperConfiguratorBase<SmileMapperConfigurator, ObjectMapper>
{
// @since 2.18
// @since 2.17.1
private final ReentrantLock _lock = new ReentrantLock();

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class XMLMapperConfigurator
extends MapperConfiguratorBase<XMLMapperConfigurator, XmlMapper>
{
// @since 2.18
// @since 2.17.1
private final ReentrantLock _lock = new ReentrantLock();

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class YAMLMapperConfigurator
extends MapperConfiguratorBase<YAMLMapperConfigurator, YAMLMapper>
{
// @since 2.18
// @since 2.17.1
private final ReentrantLock _lock = new ReentrantLock();

/*
Expand Down

0 comments on commit 1eda007

Please sign in to comment.